Searched refs:SSL_connect (Results 1 – 25 of 116) sorted by relevance
12345
/third_party/openssl/doc/man3/ |
D | SSL_connect.pod | 5 SSL_connect - initiate the TLS/SSL handshake with an TLS/SSL server 11 int SSL_connect(SSL *ssl); 15 SSL_connect() initiates the TLS/SSL handshake with a server. The communication 21 The behaviour of SSL_connect() depends on the underlying BIO. 23 If the underlying BIO is B<blocking>, SSL_connect() will only return once the 26 If the underlying BIO is B<nonblocking>, SSL_connect() will also return 27 when the underlying BIO could not satisfy the needs of SSL_connect() 30 return value of SSL_connect() will yield B<SSL_ERROR_WANT_READ> or 32 taking appropriate action to satisfy the needs of SSL_connect().
|
D | SSL_set_connect_state.pod | 40 When using the L<SSL_connect(3)> or 63 L<SSL_connect(3)>, L<SSL_accept(3)>,
|
D | SSL_set_retry_verify.pod | 52 L<ssl(7)>, L<SSL_connect(3)>, L<SSL_CTX_set_cert_verify_callback(3)>,
|
D | SSL_set_fd.pod | 62 L<SSL_connect(3)>, L<SSL_accept(3)>,
|
D | SSL_set_session.pod | 19 again during SSL_connect(). Whether the session was reused can be queried
|
D | SSL_write.pod | 35 explicitly performed by L<SSL_connect(3)> or L<SSL_accept(3)>. If the peer 138 L<SSL_connect(3)>, L<SSL_accept(3)>
|
D | SSL_read.pod | 35 explicitly performed by L<SSL_connect(3)> or L<SSL_accept(3)>. If the 133 L<SSL_connect(3)>, L<SSL_accept(3)>
|
D | SSL_do_handshake.pod | 68 L<SSL_get_error(3)>, L<SSL_connect(3)>,
|
D | SSL_accept.pod | 67 L<SSL_get_error(3)>, L<SSL_connect(3)>,
|
D | SSL_CTX_dane_enable.pod | 64 L<SSL_connect(3)> if (and only if) you want to enable DANE for that connection. 288 /* Perform SSL_connect() handshake and handle errors here */ 361 L<SSL_connect(3)>,
|
D | SSL_CTX_set_cert_verify_callback.pod | 49 the verification. Calling L<SSL_connect(3)> again resumes the connection
|
D | SSL_set_bio.pod | 96 L<SSL_connect(3)>, L<SSL_accept(3)>,
|
D | SSL_set1_host.pod | 90 /* XXX: Perform SSL_connect() handshake and handle errors here */
|
/third_party/curl/packages/vms/ |
D | gnv_conftest.c_first | 32 char SSL_connect(void) {return 0;} 44 #define SSL_connect SSL_CONNECT
|
/third_party/openssl/test/ |
D | servername_test.c | 132 if (!TEST_int_le(SSL_connect(con), 0)) in client_setup_sni_before_state() 185 if (!TEST_int_le(SSL_connect(con), 0)) in client_setup_sni_after_state()
|
D | dtlstest.c | 503 if (!TEST_int_le(SSL_connect(cssl), 0)) in test_swap_records() 511 if (!TEST_int_le(SSL_connect(cssl), 0)) in test_swap_records() 552 if (!TEST_int_gt(SSL_connect(cssl), 0)) in test_swap_records()
|
D | tls13ccstest.c | 354 if (!TEST_int_gt(SSL_connect(cssl), 0)) in test_tls13ccs() 357 if (!TEST_int_le(SSL_connect(cssl), 0)) in test_tls13ccs()
|
D | clienthellotest.c | 189 if (!TEST_int_le(SSL_connect(con), 0)) { in test_client_hello()
|
/third_party/curl/m4/ |
D | curl-openssl.m4 | 207 AC_CHECK_LIB(ssl, SSL_connect) 214 AC_CHECK_LIB(ssl, SSL_connect) 216 dnl still no SSL_connect
|
/third_party/curl/lib/ |
D | setup-vms.h | 288 #define SSL_connect SSL_CONNECT macro
|
/third_party/openssl/doc/man7/ |
D | ssl.pod | 31 L<SSL_accept(3)> or L<SSL_connect(3)>
|
/third_party/toybox/toys/pending/ |
D | wget.c | 178 if (SSL_connect(TT.ssl) == -1) in wget_connect()
|
/third_party/node/deps/openssl/openssl/apps/ |
D | s_time.c | 444 i = SSL_connect(serverCon); in doConnection()
|
/third_party/openssl/apps/ |
D | s_time.c | 444 i = SSL_connect(serverCon); in doConnection()
|
/third_party/ffmpeg/libavformat/ |
D | tls_openssl.c | 302 ret = c->listen ? SSL_accept(p->ssl) : SSL_connect(p->ssl); in tls_open()
|
12345