diff --git a/CPPTools/Net.cpp b/CPPTools/Net.cpp index 5aa1029..0acb70b 100644 --- a/CPPTools/Net.cpp +++ b/CPPTools/Net.cpp @@ -297,7 +297,7 @@ namespace IO { _open = false; close(); } - if ((time(nullptr) - commTime) > 1) if (!ping()) { _open = false; close(); } + if (autoPing && ((time(nullptr) - commTime) > 1)) if (!ping()) { _open = false; close(); } } bool NetClient::isOpen() { return _open; } @@ -362,7 +362,6 @@ namespace IO { - void NetServer::sharedSetup(char* port, std::function f) { _open = true; timeoutHandler = NULL; @@ -499,6 +498,8 @@ namespace IO { void NetServer::setOnDestroy(std::function call) { onDestroy = call; } + void NetServer::setAutoPing(bool b) { for (NetClient* cli : *clients) cli->autoPing = b; } + void writeState(NetClient& cli, const char* stateName, char state) { diff --git a/CPPTools/Net.h b/CPPTools/Net.h index 9dce259..d11921b 100644 --- a/CPPTools/Net.h +++ b/CPPTools/Net.h @@ -74,15 +74,17 @@ namespace IO { bool _write(char*, ulong_64b); // Internal write function. Doesn't do any of the fancy auto encryption: just raw write... bool writeBufferedPackets(); // Flushes and deletes buffer void update(); // Read incoming data and store in buffers - bool ping(); // Check if connection is alive by pinging remote host protected: std::vector*>*> associatedData; std::thread listener; // Incoming data listener (optional) SOCKET _socket; // Underlying socket used for communication std::vector* packets; // Basically a set containing a backlog of unprocessed data. Will oly be used if event handler doesn't exist + + std::function evt; // New data event handler std::function onDestroy; // Event handler called when NetClient object is destroyed public: + bool autoPing = true; // Whether or not client should actively check connection state time_t commTime; // Latest time a transaction occurred NetClient(char* ipAddr, char* port, CryptoLevel = CryptoLevel::None);// Standard constructor for creating connection NetClient(char* ipAddr, char* port, Crypto::RSA::KeyData&, CryptoLevel);// Standard constructor for creating connection with predefined keys @@ -94,7 +96,7 @@ namespace IO { bool write(void* message, ulong_64b size); bool write(char* message); Packet read(); - void setEventHandler(std::function); // Register a callback that is guaranteed to be called when the socket has at least one unprocessed packet + void setEventHandler(std::function);// Register a callback that is guaranteed to be called when the socket has at least one unprocessed packet void setOnDestroy(std::function); std::pair getValue(const char* name, bool copy = true); char* getStrValue(const char* name, bool copy = true); @@ -104,6 +106,7 @@ namespace IO { bool containsKey(const char* name); bool isOpen(); ulong_64b available(); + bool ping(); // Check if connection is alive by pinging remote host }; class NetServer { @@ -131,6 +134,7 @@ namespace IO { void clearHandlers(); void setOnDestroy(std::function); bool close(); + void setAutoPing(bool); };