| 198 | } |
| 199 | |
| 200 | void purgeclient(int n) |
| 201 | { |
| 202 | mclient &c = *mclients[n]; |
| 203 | if(c.message) c.message->purge(); |
| 204 | enet_socket_destroy(c.socket); |
| 205 | delete mclients[n]; |
| 206 | mclients.remove(n); |
| 207 | } |
| 208 | |
| 209 | void output(mclient &c, const char *msg, int len = 0) |
| 210 | { |
no test coverage detected