| 581 | } |
| 582 | |
| 583 | void TUdpHost::ConnectLow(TConnection* connection) { |
| 584 | Connections.Insert(connection->GetGuid(), connection); |
| 585 | if (XsPingSending) { |
| 586 | SendXsPing(S, connection, S.GetNetworkOrderPort(), 0); |
| 587 | } |
| 588 | } |
| 589 | |
| 590 | static ui8 ChooseTos(const int explicit_, const int default_) { |
| 591 | return (ui8)(explicit_ == -1 ? default_ : explicit_); |
nothing calls this directly
no test coverage detected