| 53 | } |
| 54 | |
| 55 | void OnConnect(SOCKET s) override |
| 56 | { |
| 57 | NetworkAddress address = NetworkAddress::GetPeerAddress(s); |
| 58 | _network_coordinator_client.ConnectSuccess(this->token, s, address); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | /** Connecter used after STUN exchange to connect from both sides to each other. */ |
nothing calls this directly
no test coverage detected