Home
last modified time | relevance | path

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

/openssl/doc/man3/
H A 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
/openssl/test/
H A Ddtlstest.c116 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 Dfatalerrtest.c50 wbio = SSL_get_wbio(cssl); in test_fatalerr()
H A Dssl_old_test.c2174 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 Dquicapitest.c792 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 Dsslapitest.c2816 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 Dd1_lib.c285 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 Dbio_ssl.c321 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 Dssl_lib.c1557 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 Dstatem.c384 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 Dstatem_dtls.c234 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 Dstatem_clnt.c760 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 Dstatem_srvr.c783 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 Dstatem_lib.c825 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 Ds_server.c2761 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 Ds_client.c3483 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 Dlibssl.num349 SSL_get_wbio 350 3_0_0 EXIST::FUNCTION:
/openssl/doc/designs/quic-design/
H A Dquic-api-ssl-funcs.md604 | `SSL_get_wbio` | NDP | ��C | ��A | ��QSI | ��Done …
/openssl/include/openssl/
H A Dssl.h.in1609 __owur BIO *SSL_get_wbio(const SSL *s);

Completed in 201 milliseconds