| 93 | } |
| 94 | |
| 95 | void OnConnect(SOCKET s) override |
| 96 | { |
| 97 | NetworkAddress address = NetworkAddress::GetPeerAddress(s); |
| 98 | _network_coordinator_client.ConnectSuccess(this->token, s, address); |
| 99 | } |
| 100 | }; |
| 101 | |
| 102 | /** Connect to the Game Coordinator server. */ |
nothing calls this directly
no test coverage detected