Searched defs:socket_vector (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/NetworkServices/NAT/
H A DRTWinSocketPair.cpp31 extern "C" int RTWinSocketPair(int domain, int type, int protocol, SOCKET socket_vector[2]) argument
33 LogFlowFunc(("ENTER: domain:%d, type:%d, protocol:%d, socket_vector:%p\n",
34 domain, type, protocol, socket_vector));
55 AssertPtrReturn(socket_vector, VERR_INVALID_PARAMETER);
56 if (!socket_vector)
59 socket_vector[0] = socket_vector[1] = INVALID_SOCKET;
114 socket_vector[0] = WSASocket(domain, type, protocol, 0, NULL, 0);
115 if (socket_vector[0] == INVALID_SOCKET)
120 rc = connect(socket_vector[
[all...]

Completed in 41 milliseconds