nesca/IPCAuth.h

24 lines
392 B
C
Raw Normal View History

2015-04-02 13:36:48 +00:00
#ifndef IPCAUTH_H
#define IPCAUTH_H
2015-04-02 17:27:10 +00:00
#include "Connector.h"
2015-04-02 13:36:48 +00:00
#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