Lines Matching refs:fdset
335 fd_set *fdset; in timeout_connect() local
359 fdset = xcalloc(howmany(sockfd + 1, NFDBITS), in timeout_connect()
361 FD_SET(sockfd, fdset); in timeout_connect()
365 rc = select(sockfd + 1, NULL, fdset, NULL, &tv); in timeout_connect()
400 free(fdset); in timeout_connect()
557 fd_set *fdset; in ssh_exchange_identification() local
560 fdset = xcalloc(1, fdsetsz); in ssh_exchange_identification()
579 FD_SET(connection_in, fdset); in ssh_exchange_identification()
580 rc = select(connection_in + 1, fdset, NULL, in ssh_exchange_identification()
581 fdset, &t_remaining); in ssh_exchange_identification()
621 free(fdset); in ssh_exchange_identification()