| 33 | asio::dispatch(strand_, [self = shared_from_this()] { self->read_next_request(); }); |
| 34 | } |
| 35 | ~HttpSession() { |
| 36 | } |
| 37 | |
| 38 | private: |
| 39 | enum class WriteType { Headers, Chunk, Final }; |
nothing calls this directly
no outgoing calls
no test coverage detected