mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
17 lines
336 B
C++
17 lines
336 B
C++
#ifndef SSHAUTH_H
|
|
#define SSHAUTH_H
|
|
|
|
#include "Connector.h"
|
|
#include "BruteUtils.h"
|
|
#include "Utils.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
|