nesca/IPCAuth.h
2015-12-08 19:53:54 +03:00

25 lines
413 B
C++

#ifndef IPCAUTH_H
#define IPCAUTH_H
#include "Connector.h"
#include "mainResources.h"
class IPC {
private:
bool doPost;
char postData[1024];
private:
lopaStr IPCBrute(const char *ip, int port, char *SPEC);
public:
IPC() {
doPost = false;
//ZeroMemory(postData, 1024);
postData[0] = 0;
}
lopaStr IPCLobby(const char *ip, int port, char *SPEC);
};
#endif // IPCAUTH_H