| 192 | |
| 193 | template<bool isRequest, typename Body, typename StreamVariant> |
| 194 | void OutgoingHttpMessage<isRequest, Body, StreamVariant>::StartStreaming() |
| 195 | { |
| 196 | ASSERT(Base::body().Size() == 0 && !m_SerializationStarted); |
| 197 | Base::body().Start(); |
| 198 | Base::chunked(true); |
| 199 | } |
| 200 | |
| 201 | HttpApiResponse::HttpApiResponse(Shared<AsioTlsStream>::Ptr stream, HttpServerConnection::Ptr server) |
| 202 | : OutgoingHttpMessage(std::move(stream)), m_Server(std::move(server)) |
no test coverage detected