| 229 | } |
| 230 | |
| 231 | void AnonymousServerSocket::process_client(const string& client_id) |
| 232 | { |
| 233 | if (clients.find(client_id) != clients.end()) |
| 234 | exit_error("client " + client_id + " already connected"); |
| 235 | client_connection_queue.push(client_id); |
| 236 | } |
| 237 | |
| 238 | int AnonymousServerSocket::get_connection_socket(string& client_id) |
| 239 | { |
nothing calls this directly
no test coverage detected