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 develop branch, built from commit 09fbc2c975.
PrevUpHomeNext
ssl_stream::handshake (1 of 4 overloads)

Perform SSL handshaking.

Synopsis
void
handshake(
    handshake_type type);
Description

This function is used to perform SSL handshaking on the stream. The function call will block until handshaking is complete or an error occurs.

Parameters

Name

Description

type

The type of handshaking to be performed, i.e. as a client or as a server.

Exceptions

Type

Thrown On

boost::system::system_error

Thrown on failure.


PrevUpHomeNext