nesca/Connector.h

18 lines
513 B
C
Raw Normal View History

2015-03-05 14:29:05 +00:00
#ifndef CONNECTOR_H
#define CONNECTOR_H
2015-03-06 14:32:36 +00:00
#include <mainResources.h>
#include <externData.h>
#include <STh.h>
2015-03-05 14:29:05 +00:00
2015-03-06 14:32:36 +00:00
class Connector {
2015-03-05 14:29:05 +00:00
public:
2015-03-06 14:32:36 +00:00
static int nConnect(const char *ip, const int port, std::string *buffer,
2015-03-05 14:29:05 +00:00
const char *postData = NULL,
const std::vector<std::string> *customHeaders = NULL);
static int _ConnectToPort(char *ip, int port, char *hl);
static int _SSHLobby(char *ip, int port, std::string *buffer);
};
#endif // CONNECTOR_H