nesca/BasicAuth.h

19 lines
383 B
C
Raw Normal View History

2015-03-13 14:27:21 +00:00
#ifndef BASICAUTH_H
#define BASICAUTH_H
2015-03-22 00:43:15 +00:00
#include "Utils.h"
2015-03-23 17:11:00 +00:00
#include "Connector.h"
2015-03-22 00:43:15 +00:00
#include "externData.h"
#include "mainResources.h"
2015-03-13 14:27:21 +00:00
2015-03-22 00:43:15 +00:00
class BA {
2015-03-13 14:27:21 +00:00
private:
2015-08-07 22:37:28 +00:00
static lopaStr BABrute(const char *ip, const int port);
2015-03-13 14:27:21 +00:00
2015-03-16 14:29:34 +00:00
public:
2015-04-19 00:28:46 +00:00
static int checkOutput(const string *buffer, const char *ip, const int port);
2015-08-07 22:37:28 +00:00
static lopaStr BALobby(const char *ip, const int port);
2015-03-13 14:27:21 +00:00
};
#endif // BASICAUTH_H