| 356 | OutRequests.erase(i); |
| 357 | } |
| 358 | int SendWithHighPriority(const TUdpAddress& addr, TAutoPtr<TRopeDataPacket> data) { |
| 359 | ui32 crc32 = CalcChecksum(data->GetChain()); |
| 360 | return Host->Send(addr, data.Release(), crc32, nullptr, PP_HIGH); |
| 361 | } |
| 362 | void ProcessIncomingPackets() { |
| 363 | TVector<TGUID, TCustomAllocator<TGUID>> failedRequests; |
| 364 | for (;;) { |
nothing calls this directly
no test coverage detected