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

Send an HTTP WebSocket Upgrade request and receive the response.

template<
    class RequestDecorator>
void
handshake_ex(
    string_view host,
    string_view target,
    RequestDecorator const& decorator);
  » more...

template<
    class RequestDecorator>
void
handshake_ex(
    response_type& res,
    string_view host,
    string_view target,
    RequestDecorator const& decorator);
  » more...

template<
    class RequestDecorator>
void
handshake_ex(
    string_view host,
    string_view target,
    RequestDecorator const& decorator,
    error_code& ec);
  » more...

template<
    class RequestDecorator>
void
handshake_ex(
    response_type& res,
    string_view host,
    string_view target,
    RequestDecorator const& decorator,
    error_code& ec);
  » more...

PrevUpHomeNext