Symbol: BIO_ADDR_family
crypto/openssl/crypto/bio/bio_sock2.c
343
if (BIO_ADDR_family(addr) == AF_INET6) {
crypto/openssl/crypto/bio/bss_dgram.c
484
switch (BIO_ADDR_family(addr)) {
crypto/openssl/crypto/bio/bss_dgram.c
715
switch (BIO_ADDR_family(&data->peer)) {
crypto/openssl/crypto/bio/bss_dgram.c
766
if (BIO_ADDR_family(p) == AF_UNSPEC) {
crypto/openssl/crypto/bio/bss_dgram.c
768
&& BIO_ADDR_family(&xaddr) != AF_UNSPEC) {
crypto/openssl/include/openssl/bio.h
849
int BIO_ADDR_family(const BIO_ADDR *ap);
crypto/openssl/ssl/quic/quic_channel.c
2276
if (BIO_ADDR_family(a) != BIO_ADDR_family(b))
crypto/openssl/ssl/quic/quic_channel.c
2279
switch (BIO_ADDR_family(a)) {
crypto/openssl/ssl/quic/quic_channel.c
2348
&& (BIO_ADDR_family(&ch->cur_peer_addr) == AF_INET
crypto/openssl/ssl/quic/quic_channel.c
2350
|| BIO_ADDR_family(&ch->cur_peer_addr) == AF_INET6
crypto/openssl/ssl/quic/quic_channel.c
522
if (peer_addr == NULL || BIO_ADDR_family(peer_addr) == AF_UNSPEC) {
crypto/openssl/ssl/quic/quic_impl.c
1902
&& BIO_ADDR_family(&qc->init_peer_addr) == AF_UNSPEC) {
crypto/openssl/ssl/quic/quic_impl.c
1924
&& BIO_ADDR_family(&qc->init_peer_addr) == AF_UNSPEC) {
crypto/openssl/ssl/quic/quic_impl.c
4854
family = BIO_ADDR_family(peer);
crypto/openssl/ssl/quic/quic_record_rx.c
1465
= BIO_ADDR_family(&rxe->peer) != AF_UNSPEC ? &rxe->peer : NULL;
crypto/openssl/ssl/quic/quic_record_rx.c
1467
= BIO_ADDR_family(&rxe->local) != AF_UNSPEC ? &rxe->local : NULL;
crypto/openssl/ssl/quic/quic_record_tx.c
790
return ((a == NULL || BIO_ADDR_family(a) == AF_UNSPEC)
crypto/openssl/ssl/quic/quic_record_tx.c
791
&& (b == NULL || BIO_ADDR_family(b) == AF_UNSPEC))
crypto/openssl/ssl/quic/quic_record_tx.c
931
= BIO_ADDR_family(&txe->peer) != AF_UNSPEC ? &txe->peer : NULL;
crypto/openssl/ssl/quic/quic_record_tx.c
933
= BIO_ADDR_family(&txe->local) != AF_UNSPEC ? &txe->local : NULL;
crypto/openssl/ssl/quic/quic_txp.c
2996
txpkt.peer = BIO_ADDR_family(&txp->args.peer) == AF_UNSPEC
crypto/openssl/test/bio_addr_test.c
95
if (BIO_ADDR_family(a) != BIO_ADDR_family(b))
crypto/openssl/test/bio_dgram_test.c
28
if (BIO_ADDR_family(a) != BIO_ADDR_family(b))
crypto/openssl/test/bio_dgram_test.c
31
if (BIO_ADDR_family(a) == AF_INET) {
crypto/openssl/test/bio_dgram_test.c
37
else if (BIO_ADDR_family(a) == AF_INET6) {
crypto/openssl/test/bio_dgram_test.c
702
if (!TEST_int_eq(BIO_ADDR_family(addr3), 0))
crypto/openssl/test/bio_dgram_test.c
705
if (!TEST_int_eq(BIO_ADDR_family(addr4), AF_INET))
crypto/openssl/test/bio_dgram_test.c
731
if (!TEST_int_eq(BIO_ADDR_family(addr3), AF_INET))
crypto/openssl/test/bio_dgram_test.c
737
if (!TEST_int_eq(BIO_ADDR_family(addr4), AF_INET))