summaryrefslogtreecommitdiffstats
path: root/source/HeartBeat.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/HeartBeat.h')
-rw-r--r--source/HeartBeat.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/source/HeartBeat.h b/source/HeartBeat.h
new file mode 100644
index 000000000..79465507c
--- /dev/null
+++ b/source/HeartBeat.h
@@ -0,0 +1,28 @@
+
+#pragma once
+
+#include "OSSupport/TCPLink.h"
+
+
+
+
+
+class cHeartBeat : public cTCPLink
+{
+public:
+ cHeartBeat();
+ ~cHeartBeat();
+private:
+ virtual void ReceivedData( char a_Data[256], int a_Size );
+
+ void Authenticate();
+ int m_State;
+
+ void SendUpdate();
+
+ std::string m_ServerID;
+};
+
+
+
+