Home | History | Annotate | Download | only in netboot

Lines Matching defs:timeout

274 	      long timeout;
277 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
279 if (await_reply (AWAIT_ARP, arpentry, arpreq.tipaddr, timeout))
330 long timeout;
333 timeout = rfc2131_sleep_interval (block ? TFTP_REXMT : TIMEOUT, retry);
335 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
338 if (! await_reply (AWAIT_TFTP, iport, NULL, timeout))
363 /* Timeout. */
507 long timeout;
511 timeout = rfc2131_sleep_interval (TIMEOUT, retry);
512 if (await_reply (AWAIT_RARP, 0, rarpreq.shwaddr, timeout))
586 long timeout;
603 timeout = rfc2131_sleep_interval (TIMEOUT, retry++);
605 if (await_reply (AWAIT_BOOTP, 0, NULL, timeout))
611 if (await_reply (AWAIT_BOOTP, 0, NULL, timeout))
655 timeout = rfc2131_sleep_interval (TIMEOUT, reqretry++);
656 if (await_reply (AWAIT_BOOTP, 0, NULL, timeout))
679 /* Timeout. */
739 await_reply (int type, int ival, void *ptr, int timeout)
753 time = timeout + currticks ();
754 /* The timeout check is done below. The timeout is only checked if
947 /* Do the timeout after at least a full queue walk. */
948 if ((timeout == 0) || (currticks() > time))