nesca/IPCAuth.h
2015-04-02 20:27:10 +03:00

24 lines
392 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);
}
lopaStr IPCLobby(const char *ip, int port, char *SPEC);
};
#endif // IPCAUTH_H