| 434 | |
| 435 | public: |
| 436 | inline TRequester(IOnRequest* cb, ui16 port) |
| 437 | : CB_(cb) |
| 438 | , EH_(new TEventsHandler(this)) |
| 439 | , R_(CreateHttpUdpRequester(port, EH_.Get())) |
| 440 | { |
| 441 | R_->EnableReportRequestCancel(); |
| 442 | } |
| 443 | |
| 444 | ~TRequester() override { |
| 445 | Shutdown(); |
nothing calls this directly
no test coverage detected