nesca/IPCAuth.h

25 lines
413 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;
2015-12-08 16:53:54 +00:00
//ZeroMemory(postData, 1024);
postData[0] = 0;
2015-04-02 13:36:48 +00:00
}
lopaStr IPCLobby(const char *ip, int port, char *SPEC);
};
#endif // IPCAUTH_H