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 c6a8213e9b.
PrevUpHomeNext
ssl_stream::async_handshake

Start an asynchronous SSL handshake.

template<
    class HandshakeHandler = net::default_completion_token_t<executor_type>>
DEDUCED
async_handshake(
    handshake_type type,
    BOOST_ASIO_MOVE_ARG(HandshakeHandler) handler = net::default_completion_token_t< executor_type >{});
  » more...

template<
    class ConstBufferSequence,
    class BufferedHandshakeHandler = net::default_completion_token_t<executor_type>>
DEDUCED
async_handshake(
    handshake_type type,
    ConstBufferSequence const& buffers,
    BOOST_ASIO_MOVE_ARG(BufferedHandshakeHandler) handler = net::default_completion_token_t< executor_type >{});
  » more...

PrevUpHomeNext