| 15 | HTTP_SESSION(DEBUG) << LOG_KV("[DELOBJ][HTTPSESSION]", this); |
| 16 | } |
| 17 | void bcos::boostssl::http::HttpSession::run() |
| 18 | { |
| 19 | boost::asio::dispatch(m_httpStream->stream().get_executor(), |
| 20 | boost::beast::bind_front_handler(&HttpSession::read, shared_from_this())); |
| 21 | } |
| 22 | void bcos::boostssl::http::HttpSession::read() |
| 23 | { |
| 24 | m_parser.emplace(); |
no test coverage detected