| 111 | } |
| 112 | |
| 113 | void TcpServer::onClientComplete(TcpClient& client, bool successful) |
| 114 | { |
| 115 | activeClients--; |
| 116 | debug_d("TcpSever onComplete: %s\r\n", client.getRemoteIp().toString().c_str()); |
| 117 | if(clientCompleteDelegate) { |
| 118 | clientCompleteDelegate(client, successful); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | bool TcpServer::onClientReceive(TcpClient& client, char* data, int size) |
| 123 | { |
nothing calls this directly
no test coverage detected