Searched refs:BIO_SOCK_NONBLOCK (Results 1 – 8 of 8) sorted by relevance
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_connect.pod | 31 B<BIO_SOCK_KEEPALIVE>, B<BIO_SOCK_NONBLOCK> and B<BIO_SOCK_NODELAY>. 36 combination of B<BIO_SOCK_KEEPALIVE>, B<BIO_SOCK_NONBLOCK>, 43 Accept B<options> may be zero or B<BIO_SOCK_NONBLOCK>, and is applied 56 =item BIO_SOCK_NONBLOCK 81 BIO_connect(sock, addr, BIO_SOCK_KEEPALIVE | BIO_SOCK_NONBLOCK);
|
/freebsd/crypto/openssl/crypto/bio/ |
H A D | bio_sock2.c | 99 if (!BIO_socket_nbio(sock, (options & BIO_SOCK_NONBLOCK) != 0)) in BIO_connect() 253 if (!BIO_socket_nbio(sock, (options & BIO_SOCK_NONBLOCK) != 0)) in BIO_listen() 333 if (!BIO_socket_nbio(accepted_sock, (options & BIO_SOCK_NONBLOCK) != 0)) { in BIO_accept_ex()
|
H A D | bss_acpt.c | 449 data->bind_mode |= BIO_SOCK_NONBLOCK; in acpt_ctrl() 458 data->bind_mode &= ~BIO_SOCK_NONBLOCK; in acpt_ctrl() 464 data->accepted_mode |= BIO_SOCK_NONBLOCK; in acpt_ctrl() 466 data->accepted_mode &= ~BIO_SOCK_NONBLOCK; in acpt_ctrl()
|
H A D | bss_conn.c | 496 data->connect_mode |= BIO_SOCK_NONBLOCK; in conn_ctrl() 498 data->connect_mode &= ~BIO_SOCK_NONBLOCK; in conn_ctrl()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | bio.h | 789 # define BIO_SOCK_NONBLOCK 0x08 macro
|
H A D | bio.h.in | 766 # define BIO_SOCK_NONBLOCK 0x08 macro
|
/freebsd/crypto/openssl/test/helpers/ |
H A D | handshake.c | 1365 asock = BIO_accept_ex(lsock, NULL, BIO_SOCK_NONBLOCK); in create_sctp_socks()
|
/freebsd/crypto/openssl/test/ |
H A D | ssl_old_test.c | 1936 BIO_set_bind_mode(acpt, BIO_SOCK_NONBLOCK | BIO_SOCK_REUSEADDR); in doit_localhost()
|