Added debug printf to check malloc addresses

This commit is contained in:
Th3maz1ng 2021-01-27 17:07:02 +01:00
parent 471cd43a4b
commit 86074fbc67

View File

@ -92,6 +92,7 @@ class TCPServer
if(wc && wc.connected())
{
T *clientPointer = createNewClient(wc);
Serial.printf("Addr : %lu\n", clientPointer);
//We activate the TKA : (The check is internally done in the
//ClientContext.h class : ie if one of the provided parameters is 0, then TKA is disabled)
(clientPointer->_client).keepAlive(_TKAIdleSec, _TKAIntvSec, _TKACount);