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::make_chunk

Returns a http::chunk_body.

Synopsis

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

template<
    class ConstBufferSequence,
    class... Args>
auto
make_chunk(
    ConstBufferSequence const& buffers,
    Args&&... args);
Description

This functions constructs and returns a complete http::chunk_body for a chunk body represented by the specified buffer sequence.

Parameters

Name

Description

buffers

The buffers representing the chunk body.

args

Optional arguments passed to the chunk_body constructor.

Remarks

This function is provided as a notational convenience to omit specification of the class template arguments.

Convenience header <boost/beast/http.hpp>


PrevUpHomeNext