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