| 1 |
#include <iostream> |
| 2 |
#include <string> |
| 3 |
#include "libnet/net_util.h" |
| 4 |
|
| 5 |
using std::string; |
| 6 |
|
| 7 |
class SmallNet { |
| 8 |
|
| 9 |
public: |
| 10 |
// constructor |
| 11 |
SmallNet(); |
| 12 |
// heartbeat section |
| 13 |
int connectHeartBeat(string host, int port); |
| 14 |
string heartBeatSend(string text); |
| 15 |
void closeHeartBeatConnection(); |
| 16 |
// config section |
| 17 |
int connectConfig(); |
| 18 |
string configSend(string text); |
| 19 |
void closeConfigConnection(); |
| 20 |
// misc stuff |
| 21 |
void sendUDPPacket(string xml); |
| 22 |
string getIPfromHost(string hostname); |
| 23 |
private: |
| 24 |
|
| 25 |
}; // class |