| 1279 | } |
| 1280 | |
| 1281 | void Server::handleClientDisconnected(BaseClientProxy *client) |
| 1282 | { |
| 1283 | // client has disconnected. it might be an old client or an |
| 1284 | // active client. we don't care so just handle it both ways. |
| 1285 | removeActiveClient(client); |
| 1286 | removeOldClient(client); |
| 1287 | |
| 1288 | delete client; |
| 1289 | } |
| 1290 | |
| 1291 | void Server::handleClientCloseTimeout(BaseClientProxy *client) |
| 1292 | { |
nothing calls this directly
no outgoing calls
no test coverage detected