mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
24 lines
392 B
C++
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
|