...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Write the text for a field name to an output stream.
std::ostream& operator<<( std::ostream& os, field f); » more...
Outputs the standard reason phrase of a status code to a stream.
std::ostream& operator<<( std::ostream&, status); » more...
Write the text for a request method verb to an output stream.
std::ostream& operator<<( std::ostream& os, verb v); » more...
Serialize an HTTP/1 header to a std::ostream
.
template< bool isRequest, class Fields> std::ostream& operator<<( std::ostream& os, header< isRequest, Fields > const& msg); » more...
Serialize an HTTP/1 message to a std::ostream
.
template< bool isRequest, class Body, class Fields> std::ostream& operator<<( std::ostream& os, message< isRequest, Body, Fields > const& msg); » more...