| 25 | class HttpSession : public std::enable_shared_from_this<HttpSession> { |
| 26 | public: |
| 27 | explicit HttpSession(tcp::socket &&socket, std::shared_ptr<HttpCallback> callback) |
| 28 | : stream_(std::move(socket)), strand_(stream_.get_executor()), callback_(std::move(callback)) { |
| 29 | } |
| 30 | |
| 31 | void run() { |
| 32 | self_ = shared_from_this(); |
nothing calls this directly
no outgoing calls
no test coverage detected