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
ssl_stream::async_handshake

Start an asynchronous SSL handshake.

template<
    class HandshakeHandler>
DEDUCED
async_handshake(
    handshake_type type,
    BOOST_ASIO_MOVE_ARG(HandshakeHandler) handler);
  » more...

template<
    class ConstBufferSequence,
    class BufferedHandshakeHandler>
DEDUCED
async_handshake(
    handshake_type type,
    ConstBufferSequence const& buffers,
    BOOST_ASIO_MOVE_ARG(BufferedHandshakeHandler) handler);
  » more...

PrevUpHomeNext