Lines Matching refs:s_fd
52 int s_fd; member
647 if (h->s_fd >= 0) { in helper_cleanup()
648 BIO_closesocket(h->s_fd); in helper_cleanup()
649 h->s_fd = -1; in helper_cleanup()
687 h->s_fd = -1; in helper_init()
706 h->s_fd = BIO_socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP, 0); in helper_init()
707 if (!TEST_int_ge(h->s_fd, 0)) in helper_init()
710 if (!TEST_true(BIO_socket_nbio(h->s_fd, 1))) in helper_init()
721 if (!TEST_true(BIO_bind(h->s_fd, h->s_net_bio_orig_addr, 0))) in helper_init()
725 if (!TEST_true(BIO_sock_info(h->s_fd, BIO_SOCK_INFO_ADDRESS, &info))) in helper_init()
731 if (!TEST_ptr(h->s_net_bio = h->s_net_bio_own = BIO_new_dgram(h->s_fd, 0))) in helper_init()