| 512 | static THttpConnRef Create(TIOService& srv); |
| 513 | |
| 514 | ~THttpConn() override { |
| 515 | DBGOUT("~THttpConn()"); |
| 516 | Req_.Reset(); |
| 517 | HttpOutConnCounter()->Dec(); |
| 518 | #ifdef DEBUG_STAT |
| 519 | ++TDebugStat::ConnDestroyed; |
| 520 | #endif |
| 521 | } |
| 522 | |
| 523 | void StartRequest(THttpRequestRef req, const TEndpoint& ep, size_t addrId, TDuration slowConn) { |
| 524 | { |
nothing calls this directly
no test coverage detected