Home | History | Annotate | Download | only in mtpd

Lines Matching refs:timeout

158     int timeout;
175 timeout = initialize(argc, argv);
191 while (timeout >= 0) {
192 if (poll(pollfds, 3, timeout ? timeout : -1) == -1 && errno != EINTR) {
202 timeout = pollfds[0].revents ?
203 the_protocol->process() : the_protocol->timeout();
208 if (!timeout) {
209 timeout = 5000;
214 if (timeout < 0) {
215 status = -timeout;