Lines Matching refs:net_rbio
555 BIO_free_all(ctx.qc->net_rbio); in ossl_quic_free()
875 void ossl_quic_conn_set0_net_rbio(SSL *s, BIO *net_rbio) in ossl_quic_conn_set0_net_rbio() argument
882 if (ctx.qc->net_rbio == net_rbio) in ossl_quic_conn_set0_net_rbio()
885 if (!ossl_quic_port_set_net_rbio(ctx.qc->port, net_rbio)) in ossl_quic_conn_set0_net_rbio()
888 BIO_free_all(ctx.qc->net_rbio); in ossl_quic_conn_set0_net_rbio()
889 ctx.qc->net_rbio = net_rbio; in ossl_quic_conn_set0_net_rbio()
891 if (net_rbio != NULL) in ossl_quic_conn_set0_net_rbio()
892 BIO_set_nbio(net_rbio, 1); /* best effort autoconfig */ in ossl_quic_conn_set0_net_rbio()
936 return ctx.qc->net_rbio; in ossl_quic_conn_get_net_rbio()
1124 if (desc == NULL || ctx.qc->net_rbio == NULL) in ossl_quic_get_rpoll_descriptor()
1128 return BIO_get_rpoll_descriptor(ctx.qc->net_rbio, desc); in ossl_quic_get_rpoll_descriptor()
1491 if (!ossl_quic_port_set_net_rbio(qc->port, qc->net_rbio) in configure_channel()
1592 if (qc->net_rbio == NULL || qc->net_wbio == NULL) { in quic_do_handshake()
1632 long rcaps = BIO_dgram_get_effective_caps(qc->net_rbio); in quic_do_handshake()