| 1508 | } |
| 1509 | |
| 1510 | bool Canceled() const override { |
| 1511 | if (!IO_) { |
| 1512 | return false; |
| 1513 | } |
| 1514 | return !IsNotSocketClosedByOtherSide(IO_->Socket()); |
| 1515 | } |
| 1516 | |
| 1517 | void SendReply(TData& data) override { |
| 1518 | SendReply(data, TString(), HttpCodes::HTTP_OK); |
nothing calls this directly
no test coverage detected