| /src/tests/net/tcp/ |
| t_tcp_connect_port.c | 199 int asock, csock, error, i, lsock; local 280 asock = accept(lsock, NULL, NULL); 281 ATF_REQUIRE_MSG(asock >= 0, 285 error = close(asock);
|
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| s_socket.c | 228 void get_sock_info_address(int asock, char **hostname, char **service) 238 && BIO_sock_info(asock, BIO_SOCK_INFO_ADDRESS, &info)) { 247 int report_server_accept(BIO *out, int asock, int with_address, int with_pid) 256 get_sock_info_address(asock, &hostname, &service); 303 int asock = 0; local 358 asock = BIO_socket(sock_family, sock_type, sock_protocol, 0); 359 if (asock == INVALID_SOCKET && sock_family_fallback != AF_UNSPEC) { 360 asock = BIO_socket(sock_family_fallback, sock_type, sock_protocol, 0); 363 if (asock == INVALID_SOCKET 364 || !BIO_listen(asock, sock_address, sock_options)) [all...] |
| http_server.c | 195 int asock; local 222 BIO_get_fd(acbio, &asock); 223 port_num = report_server_accept(bio_out, asock, 1, 1);
|
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| s_socket.c | 203 int report_server_accept(BIO *out, int asock, int with_address, int with_pid) 215 && BIO_sock_info(asock, BIO_SOCK_INFO_ADDRESS, &info) 263 int asock = 0; local 316 asock = BIO_socket(sock_family, sock_type, sock_protocol, 0); 317 if (asock == INVALID_SOCKET && sock_family_fallback != AF_UNSPEC) { 318 asock = BIO_socket(sock_family_fallback, sock_type, sock_protocol, 0); 321 if (asock == INVALID_SOCKET 322 || !BIO_listen(asock, sock_address, sock_options)) { 325 if (asock != INVALID_SOCKET) 326 BIO_closesocket(asock); [all...] |
| http_server.c | 222 int asock; local 246 BIO_get_fd(acbio, &asock); 247 if (!report_server_accept(bio_out, asock, 1, 1)) {
|
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| s_socket.c | 210 int asock = 0; local 261 asock = BIO_socket(sock_family, sock_type, sock_protocol, 0); 262 if (asock == INVALID_SOCKET && sock_family_fallback != AF_UNSPEC) { 263 asock = BIO_socket(sock_family_fallback, sock_type, sock_protocol, 0); 266 if (asock == INVALID_SOCKET 267 || !BIO_listen(asock, sock_address, sock_options)) { 270 if (asock != INVALID_SOCKET) 271 BIO_closesocket(asock); 283 BIO *tmpbio = BIO_new_dgram_sctp(asock, BIO_NOCLOSE); 286 BIO_closesocket(asock); [all...] |
| /src/crypto/external/apache2/openssl/dist/test/helpers/ |
| handshake.c | 1321 int lsock = INVALID_SOCKET, asock = INVALID_SOCKET; local 1379 asock = BIO_accept_ex(lsock, NULL, BIO_SOCK_NONBLOCK); 1380 if (asock == INVALID_SOCKET) 1384 *ssock = asock; 1385 consock = asock = INVALID_SOCKET; 1394 if (asock != INVALID_SOCKET) 1395 BIO_closesocket(asock);
|
| /src/crypto/external/bsd/openssl/dist/test/helpers/ |
| handshake.c | 1307 int lsock = INVALID_SOCKET, asock = INVALID_SOCKET; local 1365 asock = BIO_accept_ex(lsock, NULL, BIO_SOCK_NONBLOCK); 1366 if (asock == INVALID_SOCKET) 1370 *ssock = asock; 1371 consock = asock = INVALID_SOCKET; 1380 if (asock != INVALID_SOCKET) 1381 BIO_closesocket(asock);
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| handshake_helper.c | 1329 int lsock = INVALID_SOCKET, asock = INVALID_SOCKET; local 1387 asock = BIO_accept_ex(lsock, NULL, BIO_SOCK_NONBLOCK); 1388 if (asock == INVALID_SOCKET) 1392 *ssock = asock; 1393 consock = asock = INVALID_SOCKET; 1402 if (asock != INVALID_SOCKET) 1403 BIO_closesocket(asock);
|