Searched refs:SSL_accept (Results 1 – 25 of 38) sorted by relevance
12
/third_party/openssl/doc/man3/ |
D | SSL_accept.pod | 5 SSL_accept - wait for a TLS/SSL client to initiate a TLS/SSL handshake 11 int SSL_accept(SSL *ssl); 15 SSL_accept() waits for a TLS/SSL client to initiate the TLS/SSL handshake. 21 The behaviour of SSL_accept() depends on the underlying BIO. 23 If the underlying BIO is B<blocking>, SSL_accept() will only return once the 26 If the underlying BIO is B<nonblocking>, SSL_accept() will also return 27 when the underlying BIO could not satisfy the needs of SSL_accept() 30 return value of SSL_accept() will yield B<SSL_ERROR_WANT_READ> or 32 taking appropriate action to satisfy the needs of SSL_accept().
|
D | SSL_set_connect_state.pod | 41 L<SSL_accept(3)> routines, the correct handshake 63 L<SSL_connect(3)>, L<SSL_accept(3)>,
|
D | DTLSv1_listen.pod | 23 enable the handshake to be completed (for example by using SSL_accept()). 54 SSL_accept(). Typically, for DTLS, the read BIO will be in an "unconnected" 59 where the handshake can be continued by a call to (for example) SSL_accept(). 118 L<SSL_accept(3)>, L<ssl(7)>, L<bio(7)>
|
D | SSL_write.pod | 26 explicitly performed by L<SSL_connect(3)> or L<SSL_accept(3)>. If the peer 111 L<SSL_connect(3)>, L<SSL_accept(3)>
|
D | SSL_set_fd.pod | 62 L<SSL_connect(3)>, L<SSL_accept(3)>,
|
D | SSL_read_early_data.pod | 132 L<SSL_write_ex(3)>, L<SSL_read_ex(3)>, L<SSL_accept(3)>, L<SSL_do_handshake(3)>, 176 as L<SSL_accept(3)> or L<SSL_do_handshake(3)>. Alternatively you can call a 186 L<SSL_accept(3)>. This can happen if the client is using a protocol version less 189 L<SSL_accept(3)> anyway. Such a call will successfully return immediately with no 357 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 | 69 L<SSL_accept(3)>, L<ssl(7)>, L<bio(7)>,
|
D | SSL_connect.pod | 82 L<SSL_get_error(3)>, L<SSL_accept(3)>,
|
D | SSL_set_bio.pod | 98 L<SSL_connect(3)>, L<SSL_accept(3)>,
|
D | SSL_CTX_set_info_callback.pod | 130 str = "SSL_accept";
|
D | SSL_CTX_new.pod | 200 L<SSL_CTX_set_options(3)>, L<SSL_CTX_free(3)>, L<SSL_accept(3)>,
|
D | SSL_get_error.pod | 16 statement) for a preceding call to SSL_connect(), SSL_accept(), SSL_do_handshake(),
|
D | SSL_shutdown.pod | 165 L<SSL_accept(3)>, L<SSL_set_shutdown(3)>,
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
D | io_openssl.c | 153 if(1 != (ret = SSL_accept(session->io_context))) in SPDYF_openssl_new_session()
|
/third_party/openssl/test/ |
D | recordlentest.c | 139 if (!TEST_int_le(SSL_accept(serverssl), 0)) in test_record_overflow()
|
/third_party/grpc/test/core/handshake/ |
D | client_ssl.cc | 194 if (SSL_accept(ssl) <= 0) { in server_thread()
|
/third_party/ffmpeg/libavformat/ |
D | tls_openssl.c | 302 ret = c->listen ? SSL_accept(p->ssl) : SSL_connect(p->ssl); in tls_open()
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/ |
D | ssl.h | 112 int SSL_accept(SSL *ssl);
|
/third_party/libwebsockets/lib/tls/mbedtls/ |
D | mbedtls-server.c | 288 n = SSL_accept(wsi->tls.ssl); in lws_tls_server_accept()
|
/third_party/boost/libs/asio/include/boost/asio/ssl/detail/impl/ |
D | engine.ipp | 316 return ::SSL_accept(ssl_);
|
/third_party/boost/boost/asio/ssl/detail/impl/ |
D | engine.ipp | 316 return ::SSL_accept(ssl_);
|
/third_party/openssl/doc/man7/ |
D | ssl.pod | 29 L<SSL_accept(3)> or L<SSL_connect(3)> 463 =item int B<SSL_accept>(SSL *ssl); 749 L<SSL_accept(3)>, L<SSL_clear(3)>,
|
/third_party/openssl/apps/ |
D | s_server.c | 2787 i = SSL_accept(con); in init_ssl_connection() 2793 i = SSL_accept(con); in init_ssl_connection() 2804 i = SSL_accept(con); in init_ssl_connection() 2825 i = SSL_accept(con); in init_ssl_connection()
|
/third_party/grpc/src/objective-c/tests/CronetTests/ |
D | CronetUnitTests.mm | 314 SSL_accept(ssl);
|
12