| 635 | |
| 636 | private: |
| 637 | THttpConn(TIOService& srv) |
| 638 | : AddrId_(0) |
| 639 | , AS_(srv) |
| 640 | , BuffSize_(THttp2Options::InputBufferSize) |
| 641 | , Connected_(false) |
| 642 | , Cached_(false) |
| 643 | , Canceled_(false) |
| 644 | , Finalized_(false) |
| 645 | , InAsyncRead_(false) |
| 646 | , RequestWritten_(false) |
| 647 | , BeginReadResponse_(false) |
| 648 | { |
| 649 | HttpOutConnCounter()->Inc(); |
| 650 | } |
| 651 | |
| 652 | //can be called only from asio |
| 653 | void OnConnect(const TErrorCode& ec, IHandlingContext& ctx) { |
nothing calls this directly
no test coverage detected