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_chunk_extensions

A set of chunk extensions.

Synopsis

Defined in header <boost/beast/http/chunk_encode.hpp>

template<
    class Allocator>
class basic_chunk_extensions
Types

Name

Description

value_type

The type of value when iterating.

Member Functions

Name

Description

basic_chunk_extensions

Constructor.

begin

clear

Clear the chunk extensions.

end

insert

Insert an extension name with an empty value.

Insert an extension value.

parse

Parse a set of chunk extensions.

str

Return the serialized representation of the chunk extension.

Description

This container stores a set of chunk extensions suited for use with chunk_header and chunk_body. The container may be iterated to access the extensions in their structured form. Meets the requirements of ChunkExtensions


PrevUpHomeNext