mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 10:42:21 +00:00
16 lines
312 B
C++
16 lines
312 B
C++
#ifndef SSHAUTH_H
|
|
#define SSHAUTH_H
|
|
|
|
#include "Utils.h"
|
|
#include "Connector.h"
|
|
#include "externData.h"
|
|
#include "mainResources.h"
|
|
|
|
class SSHAuth {
|
|
public:
|
|
static int SSHLobby(const char *ip,
|
|
const int port,
|
|
std::string *buffer);
|
|
};
|
|
#endif // SSHAUTH_H
|