Home
last modified time | relevance | path

Searched refs:read_wait (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssh/
H A Dssh-keyscan.c93 struct pollfd *read_wait; variable
414 read_wait[s].fd = s; in conalloc()
415 read_wait[s].events = POLLIN; in conalloc()
436 read_wait[s].fd = -1; in confree()
437 read_wait[s].events = 0; in confree()
569 while (ppoll(read_wait, maxfd, &seltime, NULL) == -1) { in conloop()
576 if (read_wait[i].revents & (POLLHUP|POLLERR|POLLNVAL)) in conloop()
578 else if (read_wait[i].revents & (POLLIN)) in conloop()
780 read_wait = xcalloc(maxfd, sizeof(struct pollfd)); in main()
782 read_wait[j].fd = -1; in main()