Home | History | Annotate | Download | only in openssh

Lines Matching refs:fdset

246 	fd_set *fdset;
270 fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS),
272 FD_SET(sockfd, fdset);
276 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
311 xfree(fdset);
448 fd_set *fdset;
451 fdset = xcalloc(1, fdsetsz);
460 FD_SET(connection_in, fdset);
461 rc = select(connection_in + 1, fdset, NULL,
462 fdset, &t_remaining);
502 xfree(fdset);