| 39 | void ServerManager::handle(Exception& ex) { _server.manage(); } |
| 40 | |
| 41 | Server::Server(UInt32 socketBufferSize,UInt16 threads) : Startable("Server"),Handler(socketBufferSize,threads),_countClients(0),_protocols(*this),_manager(*this) { |
| 42 | if (socketBufferSize>0) |
| 43 | DEBUG("Socket Buffer size of ",socketBufferSize," bytes") |
| 44 | } |
| 45 | |
| 46 | Server::~Server() { |
| 47 | stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected