Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
http::basic_parser::on_body_init_impl

Called once before the body is processed.

Synopsis
void
on_body_init_impl(
    boost::optional< std::uint64_t > const& content_length,
    error_code& ec);
Description

This virtual function is invoked once, before the content body is processed (but after the complete header is received).

Parameters

Name

Description

content_length

A value representing the content length in bytes if the length is known (this can include a zero length). Otherwise, the value will be boost::none.

ec

An output parameter which the function may set to indicate an error. The error will be clear before this function is invoked.


PrevUpHomeNext