| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_demux.c | 26 BIO *net_bio; member in struct:quic_demux_st 71 QUIC_DEMUX *ossl_quic_demux_new(BIO *net_bio, 82 demux->net_bio = net_bio; 89 if (net_bio != NULL 90 && BIO_dgram_get_local_addr_cap(net_bio) 91 && BIO_dgram_set_local_addr_enable(net_bio, 1)) 120 void ossl_quic_demux_set_bio(QUIC_DEMUX *demux, BIO *net_bio) 124 demux->net_bio = net_bio; [all...] |
| quic_port.c | 303 static int port_update_poll_desc(QUIC_PORT *port, BIO *net_bio, int for_write) 307 if (net_bio == NULL 308 || (!for_write && !BIO_get_rpoll_descriptor(net_bio, &d)) 309 || (for_write && !BIO_get_wpoll_descriptor(net_bio, &d)))
|
| /src/crypto/external/apache2/openssl/dist/doc/designs/ddd/ |
| ddd-05-mem-nonblocking.c | 20 BIO *ssl_bio, *net_bio; member in struct:app_conn_st 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); [all...] |
| ddd-06-mem-uv.c | 73 BIO *net_bio; member in struct:app_conn_st 220 BIO_free_all(conn->net_bio); 367 int wr = BIO_write(conn->net_bio, buf->base, nr); 433 rd = BIO_read(conn->net_bio, buf, 4096); 497 BIO *internal_bio = NULL, *net_bio = NULL; local 510 if (BIO_new_bio_dgram_pair(&internal_bio, 0, &net_bio, 0) <= 0) { 515 if (BIO_new_bio_pair(&internal_bio, 0, &net_bio, 0) <= 0) { 542 conn->net_bio = net_bio;
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| 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);
|