Lines Matching refs:socket
62 int socket;
137 * Create an unbound datagram socket to do the
140 if ((iter->socket = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
146 "making interface scan socket: %s",
165 if (WSAIoctl(iter->socket, SIO_GET_INTERFACE_LIST,
212 /* We don't need the socket any more, so close it */
213 closesocket(iter->socket);
217 * Create an unbound datagram socket to do the
220 if ((iter->socket = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
226 "making interface scan socket: %s",
246 if (WSAIoctl(iter->socket, SIO_ADDRESS_LIST_QUERY,
279 closesocket(iter->socket);
294 if (iter->socket >= 0)
295 (void) closesocket(iter->socket);