WIP Reliable Message

This commit is contained in:
Jocke
2016-02-03 10:28:15 +01:00
parent 06f64f8fbf
commit e133791369
10 changed files with 40 additions and 7 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ public:
~Client();
void Start(World* world, EventBroker* eventBroker) override;
void Update() override;
private:
protected:
// Assio UDP logic
boost::asio::ip::udp::endpoint m_ReceiverEndpoint;
boost::asio::io_service m_IOService;
+14
View File
@@ -0,0 +1,14 @@
#ifndef HybridClient_h__
#define HybridClient_h__
#include "Client.h"
class HybridClient : public Client
{
public:
HybridClient(ConfigFile* config);
~HybridClient();
};
#endif
+7
View File
@@ -0,0 +1,7 @@
#ifndef TCPClient_h__
#define TCPClient_h__
#endif