Searched refs:net_bio (Results 1 – 5 of 5) sorted by relevance
/openssl/ssl/quic/ |
H A D | quic_demux.c | 26 BIO *net_bio; member 71 QUIC_DEMUX *ossl_quic_demux_new(BIO *net_bio, in ossl_quic_demux_new() argument 82 demux->net_bio = net_bio; in ossl_quic_demux_new() 89 if (net_bio != NULL in ossl_quic_demux_new() 90 && BIO_dgram_get_local_addr_cap(net_bio) in ossl_quic_demux_new() 91 && BIO_dgram_set_local_addr_enable(net_bio, 1)) in ossl_quic_demux_new() 120 void ossl_quic_demux_set_bio(QUIC_DEMUX *demux, BIO *net_bio) in ossl_quic_demux_set_bio() argument 124 demux->net_bio = net_bio; in ossl_quic_demux_set_bio() 126 if (net_bio != NULL) { in ossl_quic_demux_set_bio() 132 mtu = BIO_dgram_get_mtu(net_bio); in ossl_quic_demux_set_bio() [all …]
|
H A D | quic_port.c | 204 static int port_update_poll_desc(QUIC_PORT *port, BIO *net_bio, int for_write) in port_update_poll_desc() argument 208 if (net_bio == NULL in port_update_poll_desc() 209 || (!for_write && !BIO_get_rpoll_descriptor(net_bio, &d)) in port_update_poll_desc() 210 || (for_write && !BIO_get_wpoll_descriptor(net_bio, &d))) in port_update_poll_desc()
|
/openssl/doc/designs/ddd/ |
H A D | ddd-05-mem-nonblocking.c | 20 BIO *ssl_bio, *net_bio; member 62 BIO *ssl_bio, *internal_bio, *net_bio; local 82 if (BIO_new_bio_dgram_pair(&internal_bio, 0, &net_bio, 0) <= 0) { 84 if (BIO_new_bio_pair(&internal_bio, 0, &net_bio, 0) <= 0) { 129 conn->net_bio = net_bio; 200 return BIO_read(conn->net_bio, buf, buf_len); 211 return BIO_write(conn->net_bio, buf, buf_len); 219 return BIO_ctrl_get_write_guarantee(conn->net_bio); 228 return BIO_ctrl_pending(conn->net_bio); 271 BIO_free_all(conn->net_bio);
|
H A D | ddd-06-mem-uv.c | 73 BIO *net_bio; member 220 BIO_free_all(conn->net_bio); in teardown() 367 int wr = BIO_write(conn->net_bio, buf->base, nr); in net_read_done() 433 rd = BIO_read(conn->net_bio, buf, 4096); in flush_write_buf() 497 BIO *internal_bio = NULL, *net_bio = NULL; in setup_ssl() local 510 if (BIO_new_bio_dgram_pair(&internal_bio, 0, &net_bio, 0) <= 0) { in setup_ssl() 515 if (BIO_new_bio_pair(&internal_bio, 0, &net_bio, 0) <= 0) { in setup_ssl() 542 conn->net_bio = net_bio; in setup_ssl()
|
/openssl/include/internal/ |
H A D | quic_demux.h | 198 QUIC_DEMUX *ossl_quic_demux_new(BIO *net_bio, 213 void ossl_quic_demux_set_bio(QUIC_DEMUX *demux, BIO *net_bio);
|
Completed in 12 milliseconds