Home
last modified time | relevance | path

Searched refs:SSL_get_rbio (Results 1 – 24 of 24) 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
11 BIO *SSL_get_rbio(SSL *ssl);
16 SSL_get_rbio() and SSL_get_wbio() return pointers to the BIOs for the
H A DSSL_set_bio.pod101 L<SSL_get_rbio(3)>,
/openssl/ssl/record/
H A Drec_layer_d1.c365 if (BIO_dgram_is_sctp(SSL_get_rbio(s)) && in dtls1_read_bytes()
367 && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s)) <= 0) { in dtls1_read_bytes()
427 if (BIO_dgram_is_sctp(SSL_get_rbio(s)) && in dtls1_read_bytes()
428 BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s)) > 0) { in dtls1_read_bytes()
431 BIO_clear_retry_flags(SSL_get_rbio(s)); in dtls1_read_bytes()
432 BIO_set_retry_read(SSL_get_rbio(s)); in dtls1_read_bytes()
518 bio = SSL_get_rbio(s); in dtls1_read_bytes()
559 bio = SSL_get_rbio(s); in dtls1_read_bytes()
H A Drec_layer_s3.c957 rbio = SSL_get_rbio(ssl); in ssl3_read_bytes()
1051 bio = SSL_get_rbio(ssl); in ssl3_read_bytes()
/openssl/ssl/
H A Dbio_ssl.c298 bio = SSL_get_rbio(ssl); in ssl_ctrl()
326 ret = BIO_pending(SSL_get_rbio(ssl)); in ssl_ctrl()
334 if ((next != NULL) && (next != SSL_get_rbio(ssl))) { in ssl_ctrl()
388 ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr); in ssl_ctrl()
402 ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr); in ssl_ctrl()
418 ret = BIO_callback_ctrl(SSL_get_rbio(ssl), cmd, fp); in ssl_callback_ctrl()
H A Dd1_lib.c307 dtls1_bio_set_next_timeout(SSL_get_rbio(ssl), s->d1); in dtls1_start_timer()
446 rbio = SSL_get_rbio(ssl); in DTLSv1_listen()
H A Dssl_lib.c1557 if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s)) in SSL_set_bio()
1570 if (rbio == SSL_get_rbio(s)) { in SSL_set_bio()
1579 if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) { in SSL_set_bio()
1589 BIO *SSL_get_rbio(const SSL *s) in SSL_get_rbio() function
1636 b = SSL_get_rbio(s); in SSL_get_rfd()
1700 BIO *rbio = SSL_get_rbio(s); in SSL_set_wfd()
4782 bio = SSL_get_rbio(s); in ossl_ssl_get_error()
/openssl/test/
H A Drecordlentest.c126 serverbio = SSL_get_rbio(serverssl); in test_record_overflow()
H A Ddtls_mtu_test.c71 || !TEST_ptr(sc_bio = SSL_get_rbio(srvr_ssl)) in mtu_test()
H A Dsslbuffertest.c261 tmp = SSL_get_rbio(serverssl); in test_free_buffers()
H A Dssl_old_test.c2175 && BIO_get_ktls_recv(SSL_get_rbio(s_ssl))) in doit_localhost()
2179 else if (BIO_get_ktls_recv(SSL_get_rbio(s_ssl))) in doit_localhost()
2183 && BIO_get_ktls_recv(SSL_get_rbio(c_ssl))) in doit_localhost()
2187 else if (BIO_get_ktls_recv(SSL_get_rbio(c_ssl))) in doit_localhost()
H A Dquicapitest.c790 if (!TEST_ptr(bio = SSL_get_rbio(ssl))) in test_quic_set_fd()
797 if (!TEST_ptr(bio = SSL_get_rbio(ssl))) in test_quic_set_fd()
806 if (!TEST_ptr_null(SSL_get_rbio(ssl))) in test_quic_set_fd()
H A Dsslapitest.c3627 rbio = SSL_get_rbio(serverssl); in test_early_data_read_write()
8550 c2s = SSL_get_rbio(serverssl); in test_incorrect_shutdown()
10175 rbio = SSL_get_rbio(clientssl); in test_ssl_dup()
11659 if (!TEST_true(BIO_write_ex(SSL_get_rbio(serverssl), dummyheader, in test_rstate_string()
/openssl/apps/
H A Ds_server.c2563 BIO_set_callback_ex(SSL_get_rbio(con), count_reads_callback); in sv_body()
2845 BIO_set_callback_arg(SSL_get_rbio(con), (char *)&read_counter); in sv_body()
2847 BIO_set_callback_arg(SSL_get_rbio(con), NULL); in sv_body()
3145 if (BIO_get_ktls_recv(SSL_get_rbio(con))) in print_connection_info()
3251 BIO_set_callback_ex(SSL_get_rbio(con), bio_dump_callback); in www_body()
3252 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out); in www_body()
3697 BIO_set_callback_ex(SSL_get_rbio(con), bio_dump_callback); in rev_body()
3698 BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out); in rev_body()
H A Ds_client.c3482 BIO_number_read(SSL_get_rbio(s)), in print_stuff()
3512 if (BIO_get_ktls_recv(SSL_get_rbio(s))) in print_stuff()
/openssl/ssl/statem/
H A Dstatem_dtls.c1043 BIO_clear_retry_flags(SSL_get_rbio(ssl)); in dtls_wait_for_dry()
1044 BIO_set_retry_read(SSL_get_rbio(ssl)); in dtls_wait_for_dry()
1069 BIO_set_flags(SSL_get_rbio(ssl), BIO_FLAGS_READ); in dtls1_read_failed()
H A Dstatem_clnt.c419 rbio = SSL_get_rbio(SSL_CONNECTION_GET_SSL(s)); in ossl_statem_client_read_transition()
H A Dstatem_srvr.c333 rbio = SSL_get_rbio(SSL_CONNECTION_GET_SSL(s)); in ossl_statem_server_read_transition()
/openssl/test/helpers/
H A Dquictestlib.c441 if (BIO_pending(SSL_get_rbio(s)) > 0 in qtest_wait_for_timeout()
/openssl/util/
H A Dlibssl.num261 SSL_get_rbio 262 3_0_0 EXIST::FUNCTION:
/openssl/apps/lib/
H A Ds_cb.c864 (void)BIO_dgram_get_peer(SSL_get_rbio(ssl), peer); in generate_stateless_cookie_callback()
/openssl/doc/
H A Dbuild.info2646 DEPEND[html/man3/SSL_get_rbio.html]=man3/SSL_get_rbio.pod
2647 GENERATE[html/man3/SSL_get_rbio.html]=man3/SSL_get_rbio.pod
2648 DEPEND[man/man3/SSL_get_rbio.3]=man3/SSL_get_rbio.pod
2649 GENERATE[man/man3/SSL_get_rbio.3]=man3/SSL_get_rbio.pod
3671 html/man3/SSL_get_rbio.html \
4335 man/man3/SSL_get_rbio.3 \
/openssl/doc/designs/quic-design/
H A Dquic-api-ssl-funcs.md605 | `SSL_get_rbio` | NDP | ��C | ��A | ��QSI | ��Done …
/openssl/include/openssl/
H A Dssl.h.in1608 __owur BIO *SSL_get_rbio(const SSL *s);

Completed in 172 milliseconds