| 2597 | |
| 2598 | |
| 2599 | void cClientHandle::PacketBufferFull(void) |
| 2600 | { |
| 2601 | // Too much data in the incoming queue, the server is probably too busy, kick the client: |
| 2602 | LOGERROR("Too much data in queue for client \"%s\" @ %s, kicking them.", m_Username.c_str(), m_IPString.c_str()); |
| 2603 | SendDisconnect("Server busy"); |
| 2604 | Destroy(); |
| 2605 | } |
| 2606 | |
| 2607 | |
| 2608 |
no test coverage detected