/openssl/doc/man3/ |
H A D | SSL_get_rbio.pod | 5 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
|
/openssl/test/ |
H A D | dtlstest.c | 116 c_to_s_mempacket = SSL_get_wbio(clientssl1); in test_dtls_unprocessed() 269 mempackbio = SSL_get_wbio(serverssl); in test_dtls_drop_records() 276 mempackbio = SSL_get_wbio(clientssl); in test_dtls_drop_records() 376 BIO_ctrl(SSL_get_wbio(clientssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL); in test_dtls_duplicate_records() 377 BIO_ctrl(SSL_get_wbio(serverssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL); in test_dtls_duplicate_records() 522 bio = SSL_get_wbio(cssl); in test_swap_records() 536 bio = SSL_get_wbio(sssl); in test_swap_records() 549 bio = SSL_get_wbio(sssl); in test_swap_records()
|
H A D | fatalerrtest.c | 50 wbio = SSL_get_wbio(cssl); in test_fatalerr()
|
H A D | ssl_old_test.c | 2174 if (BIO_get_ktls_send(SSL_get_wbio(s_ssl)) in doit_localhost() 2177 else if (BIO_get_ktls_send(SSL_get_wbio(s_ssl))) in doit_localhost() 2182 if (BIO_get_ktls_send(SSL_get_wbio(c_ssl)) in doit_localhost() 2185 else if (BIO_get_ktls_send(SSL_get_wbio(c_ssl))) in doit_localhost()
|
H A D | quicapitest.c | 792 if (!TEST_ptr_eq(bio, SSL_get_wbio(ssl))) in test_quic_set_fd() 799 if (!TEST_ptr_null(SSL_get_wbio(ssl))) in test_quic_set_fd() 804 if (!TEST_ptr(bio = SSL_get_wbio(ssl))) in test_quic_set_fd()
|
H A D | sslapitest.c | 2816 tmp = SSL_get_wbio(serverssl); in test_extra_tickets() 4041 BIO *wbio = SSL_get_wbio(clientssl); in early_data_skip_helper() 6822 tmp = SSL_get_wbio(peerwrite); in test_key_update_peer_in_write() 6996 tmp = SSL_get_wbio(local); in test_key_update_local_in_write() 8765 tmp = SSL_get_wbio(serverssl); in test_async_shutdown() 10182 wbio = SSL_get_wbio(clientssl); in test_ssl_dup() 11742 tmp = SSL_get_wbio(serverssl); in test_handshake_retry() 11813 tmp = SSL_get_wbio(clientssl); in test_data_retry()
|
/openssl/ssl/ |
H A D | d1_lib.c | 285 if (BIO_dgram_is_sctp(SSL_get_wbio(ssl))) { in dtls1_start_timer() 377 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL); in dtls1_check_timeout_num() 447 wbio = SSL_get_wbio(ssl); in DTLSv1_listen() 868 wbio = SSL_get_wbio(s); in dtls1_shutdown() 876 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1, in dtls1_shutdown() 882 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL); in dtls1_shutdown() 893 s->d1->link_mtu - BIO_dgram_get_mtu_overhead(SSL_get_wbio(ssl)); in dtls1_query_mtu() 901 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); in dtls1_query_mtu() 910 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SET_MTU, in dtls1_query_mtu() 929 return dtls1_link_min_mtu() - BIO_dgram_get_mtu_overhead(SSL_get_wbio(ssl)); in dtls1_min_mtu()
|
H A D | bio_ssl.c | 321 ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr); in ssl_ctrl() 330 ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr); in ssl_ctrl()
|
H A D | ssl_lib.c | 1557 if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s)) in SSL_set_bio() 1579 if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) { in SSL_set_bio() 1604 BIO *SSL_get_wbio(const SSL *s) in SSL_get_wbio() function 1648 b = SSL_get_wbio(s); in SSL_get_wfd() 1736 BIO *wbio = SSL_get_wbio(s); in SSL_set_rfd() 5880 b = SSL_get_wbio(ssl); in SSL_set_record_padding_callback()
|
/openssl/ssl/statem/ |
H A D | statem.c | 384 if (SSL_CONNECTION_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(ssl))) { in state_machine() 389 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE, in state_machine() 457 if (!SSL_CONNECTION_IS_DTLS(s) || !BIO_dgram_is_sctp(SSL_get_wbio(ssl))) in state_machine() 514 if (SSL_CONNECTION_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(ssl))) { in state_machine() 519 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE, in state_machine()
|
H A D | statem_dtls.c | 234 if (retry && BIO_ctrl(SSL_get_wbio(ssl), in dtls1_do_write() 1022 ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(ssl)); in dtls_wait_for_dry()
|
H A D | statem_clnt.c | 760 if (BIO_dgram_is_sctp(SSL_get_wbio(SSL_CONNECTION_GET_SSL(s)))) { in ossl_statem_client_pre_work() 881 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_client_post_work() 894 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_client_post_work() 1777 BIO_ctrl(SSL_get_wbio(ssl), in tls_process_server_hello() 3637 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, in tls_client_key_exchange_post_work()
|
H A D | statem_srvr.c | 783 if (SSL_CONNECTION_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(ssl))) { in ossl_statem_server_pre_work() 944 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, in ossl_statem_server_post_work() 991 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_server_post_work() 1016 BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, in ossl_statem_server_post_work()
|
H A D | statem_lib.c | 825 BIO_ctrl(SSL_get_wbio(SSL_CONNECTION_GET_SSL(s)), in tls_process_change_cipher_spec() 1427 || BIO_dgram_is_sctp(SSL_get_wbio(SSL_CONNECTION_GET_SSL(s))) in tls_finish_handshake()
|
/openssl/apps/ |
H A D | s_server.c | 2761 BIO_write(SSL_get_wbio(con), str, sizeof(str) -1); in sv_body() 2968 wbio = SSL_get_wbio(con); in init_ssl_connection() 3143 if (BIO_get_ktls_send(SSL_get_wbio(con))) in print_connection_info() 3531 if (use_sendfile_for_req && !BIO_get_ktls_send(SSL_get_wbio(con))) { in www_body()
|
H A D | s_client.c | 3483 BIO_number_written(SSL_get_wbio(s))); in print_stuff() 3510 if (BIO_get_ktls_send(SSL_get_wbio(s))) in print_stuff()
|
/openssl/util/ |
H A D | libssl.num | 349 SSL_get_wbio 350 3_0_0 EXIST::FUNCTION:
|
/openssl/doc/designs/quic-design/ |
H A D | quic-api-ssl-funcs.md | 604 | `SSL_get_wbio` | NDP | C | A | QSI | Done …
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 1609 __owur BIO *SSL_get_wbio(const SSL *s);
|