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 for the latest Boost documentation.
PrevUpHomeNext
websocket::stream::async_accept_ex

Start reading and responding to a WebSocket HTTP Upgrade request.

template<
    class ResponseDecorator,
    class AcceptHandler>
void-or-deduced
async_accept_ex(
    ResponseDecorator const& decorator,
    AcceptHandler&& handler);
  » more...

template<
    class ConstBufferSequence,
    class ResponseDecorator,
    class AcceptHandler>
void-or-deduced
async_accept_ex(
    ConstBufferSequence const& buffers,
    ResponseDecorator const& decorator,
    AcceptHandler&& handler);
  » more...

template<
    class Body,
    class Allocator,
    class ResponseDecorator,
    class AcceptHandler>
void-or-deduced
async_accept_ex(
    http::request< Body, http::basic_fields< Allocator >> const& req,
    ResponseDecorator const& decorator,
    AcceptHandler&& handler);
  » more...

PrevUpHomeNext