Home
last modified time | relevance | path

Searched refs:SSL_get_wbio (Results 1 – 20 of 20) sorted by relevance

/third_party/openssl/doc/man3/
DSSL_get_rbio.pod5 SSL_get_rbio, SSL_get_wbio - get BIO linked to an SSL object
12 BIO *SSL_get_wbio(SSL *ssl);
16 SSL_get_rbio() and SSL_get_wbio() return pointers to the BIOs for the
/third_party/openssl/test/
Ddtlstest.c92 c_to_s_mempacket = SSL_get_wbio(clientssl1); in test_dtls_unprocessed()
209 mempackbio = SSL_get_wbio(serverssl); in test_dtls_drop_records()
216 mempackbio = SSL_get_wbio(clientssl); in test_dtls_drop_records()
315 BIO_ctrl(SSL_get_wbio(clientssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL); in test_dtls_duplicate_records()
316 BIO_ctrl(SSL_get_wbio(serverssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL); in test_dtls_duplicate_records()
Dfatalerrtest.c50 wbio = SSL_get_wbio(cssl); in test_fatalerr()
Dsslapitest.c2701 BIO *wbio = SSL_get_wbio(clientssl); in early_data_skip_helper()
4742 tmp = SSL_get_wbio(peerwrite); in test_key_update_in_write()
6645 wbio = SSL_get_wbio(clientssl); in test_ssl_dup()
/third_party/openssl/ssl/
Dd1_lib.c249 if (BIO_dgram_is_sctp(SSL_get_wbio(s))) { in dtls1_start_timer()
374 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL); in dtls1_check_timeout_num()
471 wbio = SSL_get_wbio(s); in DTLSv1_listen()
873 wbio = SSL_get_wbio(s); in dtls1_shutdown()
881 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1, in dtls1_shutdown()
887 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL); in dtls1_shutdown()
896 s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s)); in dtls1_query_mtu()
904 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); in dtls1_query_mtu()
913 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU, in dtls1_query_mtu()
930 return dtls1_link_min_mtu() - BIO_dgram_get_mtu_overhead(SSL_get_wbio(s)); in dtls1_min_mtu()
Dssl_lib.c1272 if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s)) in SSL_set_bio()
1294 if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) { in SSL_set_bio()
1309 BIO *SSL_get_wbio(const SSL *s) in SSL_get_wbio() function
1343 b = SSL_get_wbio(s); in SSL_get_wfd()
1392 BIO *wbio = SSL_get_wbio(s); in SSL_set_rfd()
/third_party/openssl/ssl/statem/
Dstatem.c326 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) { in state_machine()
331 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE, in state_machine()
409 if (!SSL_IS_DTLS(s) || !BIO_dgram_is_sctp(SSL_get_wbio(s))) in state_machine()
467 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) { in state_machine()
472 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE, in state_machine()
Dstatem_clnt.c697 if (BIO_dgram_is_sctp(SSL_get_wbio(s))) { in ossl_statem_client_pre_work()
826 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_client_post_work()
842 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_client_post_work()
1725 BIO_ctrl(SSL_get_wbio(s), in tls_process_server_hello()
3427 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, in tls_client_key_exchange_post_work()
Dstatem_dtls.c251 if (retry && BIO_ctrl(SSL_get_wbio(s), in dtls1_do_write()
937 ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s)); in dtls_wait_for_dry()
Dstatem_srvr.c717 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) { in ossl_statem_server_pre_work()
878 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, in ossl_statem_server_post_work()
924 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_server_post_work()
953 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_server_post_work()
3555 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, in tls_post_process_client_key_exchange()
Dstatem_lib.c755 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD, 1, NULL); in tls_process_change_cipher_spec()
1046 || BIO_dgram_is_sctp(SSL_get_wbio(s)) in tls_finish_handshake()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h1595 BIO *SSL_get_wbio(const SSL *ssl);
/third_party/libwebsockets/lib/tls/openssl/
Dopenssl-server.c667 bio = SSL_get_wbio(wsi->tls.ssl);
/third_party/python/Modules/
D_ssl.c883 BIO_set_nbio(SSL_get_wbio(self->ssl), 1); in newPySSLSocket()
947 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_do_handshake_impl()
2324 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_write_impl()
2491 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_read_impl()
2590 BIO_set_nbio(SSL_get_wbio(self->ssl), nonblocking); in _ssl__SSLSocket_shutdown_impl()
/third_party/openssl/util/
Dlibssl.num349 SSL_get_wbio 350 1_1_0 EXIST::FUNCTION:
/third_party/openssl/apps/
Ds_server.c2568 BIO_write(SSL_get_wbio(con), str, strlen(str)); in sv_body()
2770 wbio = SSL_get_wbio(con); in init_ssl_connection()
Ds_client.c3274 BIO_number_written(SSL_get_wbio(s))); in print_stuff()
/third_party/openssl/doc/man7/
Dssl.pod595 =item BIO *B<SSL_get_wbio>(const SSL *ssl);
/third_party/openssl/include/openssl/
Dssl.h1547 __owur BIO *SSL_get_wbio(const SSL *s);
/third_party/grpc/src/boringssl/
Dboringssl_prefix_symbols.h385 #define SSL_get_wbio BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, SSL_get_wbio) macro