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 a snapshot of the master branch, built from commit 7789ef3d8d.
PrevUpHomeNext
websocket::stream::accept

Perform the WebSocket handshake in the server role.

void
accept();
  » more...

Read and respond to a WebSocket HTTP Upgrade request.

void
accept(
    error_code& ec);
  » more...

template<
    class ConstBufferSequence>
void
accept(
    ConstBufferSequence const& buffers);
  » more...

template<
    class ConstBufferSequence>
void
accept(
    ConstBufferSequence const& buffers,
    error_code& ec);
  » more...

Respond to a WebSocket HTTP Upgrade request.

template<
    class Body,
    class Allocator>
void
accept(
    http::request< Body, http::basic_fields< Allocator > > const& req);
  » more...

template<
    class Body,
    class Allocator>
void
accept(
    http::request< Body, http::basic_fields< Allocator > > const& req,
    error_code& ec);
  » more...

PrevUpHomeNext