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

PrevUpHomeNext

ssl::stream::async_handshake

Start an asynchronous SSL handshake.

template<
    typename HandshakeToken = default_completion_token_t<executor_type>>
auto async_handshake(
    handshake_type type,
    HandshakeToken && token = default_completion_token_t< executor_type >());
  » more...

template<
    typename ConstBufferSequence,
    typename BufferedHandshakeToken = default_completion_token_t<executor_type>>
auto async_handshake(
    handshake_type type,
    const ConstBufferSequence & buffers,
    BufferedHandshakeToken && token = default_completion_token_t< executor_type >(),
    constraint_t< is_const_buffer_sequence< ConstBufferSequence >::value >  = 0);
  » more...

PrevUpHomeNext