| 1289 | } |
| 1290 | |
| 1291 | void Server::handleClientCloseTimeout(BaseClientProxy *client) |
| 1292 | { |
| 1293 | // client took too long to disconnect. just dump it. |
| 1294 | LOG_NOTE("forced disconnection of client \"%s\"", getName(client).c_str()); |
| 1295 | removeOldClient(client); |
| 1296 | |
| 1297 | delete client; |
| 1298 | } |
| 1299 | |
| 1300 | void Server::handleSwitchToScreenEvent(const Event &event) |
| 1301 | { |
nothing calls this directly
no outgoing calls
no test coverage detected