/////////////////////////////////////////////////////////////////////
| 1418 | |
| 1419 | ////////////////////////////////////////////////////////////////////////// |
| 1420 | void AbortOnFailedRequest(TUdpHttpResponse* answer) { |
| 1421 | if (answer && answer->Ok == TUdpHttpResponse::FAILED) { |
| 1422 | printf("Failed request to host %s\n", GetAddressAsString(answer->PeerAddress).c_str()); |
| 1423 | fflush(nullptr); |
| 1424 | Y_ASSERT(0); |
| 1425 | abort(); |
| 1426 | } |
| 1427 | } |
| 1428 | |
| 1429 | TString GetDebugInfo(const TUdpAddress& addr, double timeout) { |
| 1430 | NHPTimer::STime start; |
nothing calls this directly
no test coverage detected