Searched refs:confds (Results 1 – 1 of 1) sorted by relevance
434 fd_set confds; in BIO_socket_wait() local451 FD_ZERO(&confds); in BIO_socket_wait()452 openssl_fdset(fd, &confds); in BIO_socket_wait()455 return select(fd + 1, for_read ? &confds : NULL, in BIO_socket_wait()456 for_read ? NULL : &confds, NULL, &tv); in BIO_socket_wait()458 struct pollfd confds; in BIO_socket_wait()470 confds.fd = fd; in BIO_socket_wait()471 confds.events = for_read ? POLLIN : POLLOUT; in BIO_socket_wait()472 return poll(&confds, 1, (int)(max_time - now) * 1000); in BIO_socket_wait()
Completed in 4 milliseconds