Lines Matching defs:acpt
1921 BIO *acpt = NULL, *server = NULL, *client = NULL;
1927 acpt = BIO_new_accept(family == BIO_FAMILY_IPV4 ? "127.0.0.1:0"
1929 if (acpt == NULL)
1931 BIO_set_accept_ip_family(acpt, family);
1932 BIO_set_bind_mode(acpt, BIO_SOCK_NONBLOCK | BIO_SOCK_REUSEADDR);
1933 if (BIO_do_accept(acpt) <= 0)
1936 BIO_snprintf(addr_str, sizeof(addr_str), ":%s", BIO_get_accept_port(acpt));
1945 if (BIO_set_nbio(acpt, 1) <= 0)
1961 if (BIO_do_accept(acpt) <= 0) {
1962 if (!BIO_should_retry(acpt))
1971 server = BIO_pop(acpt);
1972 BIO_free_all(acpt);
1973 acpt = NULL;
2198 BIO_free_all(acpt);