Home
last modified time | relevance | path

Searched refs:BIO_do_handshake (Results 1 – 4 of 4) sorted by relevance

/third_party/openssl/doc/man3/
DBIO_f_ssl.pod5 BIO_do_handshake,
34 long BIO_do_handshake(BIO *b);
97 BIO_do_handshake() attempts to complete an SSL handshake on the
123 Applications do not have to call BIO_do_handshake() but may wish
129 BIO_get_num_renegotiates(), and BIO_do_handshake() are implemented as macros.
144 BIO_do_handshake() returns 1 if the connection was established successfully.
258 if (BIO_do_handshake(sbio) <= 0) {
/third_party/openssl/include/openssl/
Dbio.h405 # define BIO_do_connect(b) BIO_do_handshake(b)
406 # define BIO_do_accept(b) BIO_do_handshake(b)
409 # define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL) macro
/third_party/openssl/util/
Dprivate.num99 BIO_do_handshake define
/third_party/openssl/apps/
Ds_server.c3408 i = BIO_do_handshake(io); in rev_body()