Home
last modified time | relevance | path

Searched refs:asock (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/openssl/openssl/apps/lib/
Ds_socket.c203 int report_server_accept(BIO *out, int asock, int with_address, int with_pid) in report_server_accept() argument
215 && BIO_sock_info(asock, BIO_SOCK_INFO_ADDRESS, &info) in report_server_accept()
263 int asock = 0; in do_server() local
316 asock = BIO_socket(sock_family, sock_type, sock_protocol, 0); in do_server()
317 if (asock == INVALID_SOCKET && sock_family_fallback != AF_UNSPEC) { in do_server()
318 asock = BIO_socket(sock_family_fallback, sock_type, sock_protocol, 0); in do_server()
321 if (asock == INVALID_SOCKET in do_server()
322 || !BIO_listen(asock, sock_address, sock_options)) { in do_server()
325 if (asock != INVALID_SOCKET) in do_server()
326 BIO_closesocket(asock); in do_server()
[all …]
Dhttp_server.c222 int asock; in http_server_init_bio() local
243 BIO_get_fd(acbio, &asock); in http_server_init_bio()
244 if (!report_server_accept(bio_out, asock, 1, 1)) { in http_server_init_bio()
/third_party/openssl/apps/lib/
Ds_socket.c203 int report_server_accept(BIO *out, int asock, int with_address, int with_pid) in report_server_accept() argument
215 && BIO_sock_info(asock, BIO_SOCK_INFO_ADDRESS, &info) in report_server_accept()
263 int asock = 0; in do_server() local
316 asock = BIO_socket(sock_family, sock_type, sock_protocol, 0); in do_server()
317 if (asock == INVALID_SOCKET && sock_family_fallback != AF_UNSPEC) { in do_server()
318 asock = BIO_socket(sock_family_fallback, sock_type, sock_protocol, 0); in do_server()
321 if (asock == INVALID_SOCKET in do_server()
322 || !BIO_listen(asock, sock_address, sock_options)) { in do_server()
325 if (asock != INVALID_SOCKET) in do_server()
326 BIO_closesocket(asock); in do_server()
[all …]
Dhttp_server.c222 int asock; in http_server_init_bio() local
243 BIO_get_fd(acbio, &asock); in http_server_init_bio()
244 if (!report_server_accept(bio_out, asock, 1, 1)) { in http_server_init_bio()
/third_party/openssl/test/helpers/
Dhandshake.c1301 int lsock = INVALID_SOCKET, asock = INVALID_SOCKET; in create_sctp_socks() local
1359 asock = BIO_accept_ex(lsock, NULL, BIO_SOCK_NONBLOCK); in create_sctp_socks()
1360 if (asock == INVALID_SOCKET) in create_sctp_socks()
1364 *ssock = asock; in create_sctp_socks()
1365 consock = asock = INVALID_SOCKET; in create_sctp_socks()
1374 if (asock != INVALID_SOCKET) in create_sctp_socks()
1375 BIO_closesocket(asock); in create_sctp_socks()
/third_party/openssl/apps/include/
Ds_apps.h19 int report_server_accept(BIO *out, int asock, int with_address, int with_pid);
/third_party/node/deps/openssl/openssl/apps/include/
Ds_apps.h19 int report_server_accept(BIO *out, int asock, int with_address, int with_pid);