Searched refs:connSet (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/
H A Dpptpmanager.c204 fd_set connSet; local
237 FD_ZERO(&connSet);
239 FD_SET(hostSocket, &connSet);
245 FD_SET(hostSocket, &connSet);
250 FD_SET(sig_fd, &connSet);
254 if (select(max_fd + 1, &connSet, NULL, NULL, NULL) != -1) break;
261 if (FD_ISSET(sig_fd, &connSet)) { /* SIGCHLD */
269 if (FD_ISSET(hostSocket, &connSet)) { /* A call came! */
388 } /* FD_ISSET(hostSocket, &connSet) */
H A Dpptpctrl.c473 fd_set connSet; /* fd_set for select() */ local
492 FD_ZERO(&connSet);
493 FD_SET(clientSocket, &connSet);
498 while (select(clientSocket + 1, &connSet, NULL, NULL, &tv) == 1) {

Completed in 128 milliseconds