| 85 | |
| 86 | template<bool isRequest, typename Body, typename StreamVariant> |
| 87 | void IncomingHttpMessage<isRequest, Body, StreamVariant>::ParseBody( |
| 88 | boost::beast::flat_buffer& buf, |
| 89 | boost::asio::yield_context yc |
| 90 | ) |
| 91 | { |
| 92 | std::visit([&](auto& stream) { boost::beast::http::async_read(*stream, buf, m_Parser, yc); }, m_Stream); |
| 93 | Base::body() = std::move(m_Parser.release().body()); |
| 94 | } |
| 95 | |
| 96 | template<bool isRequest, typename Body, typename StreamVariant> |
| 97 | void IncomingHttpMessage<isRequest, Body, StreamVariant>::Parse(boost::asio::yield_context& yc) |
no outgoing calls
no test coverage detected