| 1308 | } |
| 1309 | |
| 1310 | bool THttpRequest::RequestSendedCompletely() noexcept { |
| 1311 | if (RequestSendedCompletely_) { |
| 1312 | return true; |
| 1313 | } |
| 1314 | |
| 1315 | THttpConnRef c(GetConn()); |
| 1316 | return !!c ? c->RequestSendedCompletely() : false; |
| 1317 | } |
| 1318 | |
| 1319 | void THttpRequest::Cancel() noexcept { |
| 1320 | if (!Canceled_) { |
no outgoing calls
no test coverage detected