| 417 | } |
| 418 | |
| 419 | void ClientNetworkCoordinatorSocketHandler::StartTurnConnection(std::string_view token) |
| 420 | { |
| 421 | auto turn_it = this->turn_handlers.find(token); |
| 422 | if (turn_it == this->turn_handlers.end()) return; |
| 423 | |
| 424 | turn_it->second->Connect(); |
| 425 | } |
| 426 | |
| 427 | void ClientNetworkCoordinatorSocketHandler::Connect() |
| 428 | { |
no test coverage detected