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 an older version of Boost and was released in 2023. The current version is 1.90.0.
A Body using std::string
Defined in header <boost/beast/http/string_body.hpp>
using string_body = basic_string_body< char >;
|
Name |
Description |
|---|---|
|
The algorithm for parsing the body. |
|
|
The type of container used for the body. |
|
|
The algorithm for serializing the body. |
|
Name |
Description |
|---|---|
|
Returns the payload size of the body. |
This body uses std::basic_string as a memory-based container
for holding message payloads. Messages using this body type may be serialized
and parsed.