HomeSort by: relevance | last modified time | path
    Searched defs:accept_socket (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/libuv/dist/src/win/
tcp.c 397 SOCKET accept_socket; local
401 assert(req->accept_socket == INVALID_SOCKET);
411 accept_socket = socket(family, SOCK_STREAM, 0);
412 if (accept_socket == INVALID_SOCKET) {
420 if (!SetHandleInformation((HANDLE) accept_socket, HANDLE_FLAG_INHERIT, 0)) {
424 closesocket(accept_socket);
436 accept_socket,
446 req->accept_socket = accept_socket;
451 req->accept_socket = accept_socket
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
s_server.c 75 static int accept_socket = -1; variable
2442 do_server(&accept_socket, host, port, socket_family, socket_type, protocol,
3032 if (accept_socket >= 0) {
3033 BIO_closesocket(accept_socket);
  /src/crypto/external/bsd/openssl/dist/apps/
s_server.c 73 static int accept_socket = -1; variable
2234 do_server(&accept_socket, host, port, socket_family, socket_type, protocol,
2830 if (accept_socket >= 0) {
2831 BIO_closesocket(accept_socket);
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_server.c 80 static int accept_socket = -1; variable
2166 do_server(&accept_socket, host, port, socket_family, socket_type, protocol,
2771 if (accept_socket >= 0) {
2772 BIO_closesocket(accept_socket);

Completed in 37 milliseconds