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

websocket::request_type

The type of object holding HTTP Upgrade requests.

Synopsis

Defined in header <boost/beast/websocket/rfc6455.hpp>

using request_type = http::request< http::empty_body >;
Types

Name

Description

reader

The algorithm for parsing the body.

value_type

The type of container used for the body.

writer

The algorithm for serializing the body.

Static Member Functions

Name

Description

size

Returns the payload size of the body.

This body is used to represent messages which do not have a message body. If this body is used with a parser, and the parser encounters octets corresponding to a message body, the parser will fail with the error http::unexpected_body . The Content-Length of this body is always 0.


PrevUpHomeNext