Lines Matching refs:fdset
335 fd_set *fdset; in timeout_connect() local
359 fdset = (fd_set *)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()
555 fd_set *fdset; in ssh_exchange_identification() local
558 fdset = xcalloc(1, fdsetsz); in ssh_exchange_identification()
577 FD_SET(connection_in, fdset); in ssh_exchange_identification()
578 rc = select(connection_in + 1, fdset, NULL, in ssh_exchange_identification()
579 fdset, &t_remaining); in ssh_exchange_identification()
619 free(fdset); in ssh_exchange_identification()