MCPcopy Create free account
hub / github.com/boostorg/beast / is_done

Method is_done

include/boost/beast/http/basic_parser.hpp:186–190  ·  view source on GitHub ↗

Returns `true` if the message is complete. The message is complete after the full header is prduced and one of the following is true: @li The skip body option was set. @li The semantics of the message indicate there is no body. @li The semantics of the message indicate a body is expected, and the entire body was parsed. */

Source from the content-addressed store, hash-verified

184 and the entire body was parsed.
185 */
186 bool
187 is_done() const
188 {
189 return state_ == state::complete;
190 }
191
192 /** Returns `true` if a the parser has produced the full header.
193 */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected