Lines Matching defs:timeout

465  * The timeout arguments determine how long we should wait for draining.
468 tcp_drain_input(tcp_t *tcp, int sock_id, int timeout)
481 * structure to determine the timeout value, we need to save
485 sockets[sock_id].in_timeout = timeout;
686 * was not transmitted because of ARP timeout
1056 int timeout;
1068 timeout = prom_gettime() + sockets[sock_id].in_timeout;
1070 timeout = prom_gettime() + tcp_accept_timeout;
1072 timeout > prom_gettime()) {
1080 /* If there is an eager, don't timeout... */
1081 if (timeout <= prom_gettime() && listener->tcp_eager_next_q == NULL) {
1083 printf("tcp_accept: timeout\n");
1415 * ignore the ARP timeout.
1565 * 2. Don't drop a SYN request before its first timeout. This gives every
1566 * request at least til the first timeout to complete its 3-way handshake.
1567 * 3. The current threshold is - # of timeout > q0len/4 => SYN alert on
1568 * # of timeout drops back to <= q0len/32 => SYN alert off
1705 int timeout;
1711 * But if the MAC timeout is less than tcp_rto, we are fine
1714 timeout = sockets[sock_id].in_timeout;
1715 if (timeout > tcp->tcp_rto) {
1727 timeout;
1791 sockets[sock_id].in_timeout = timeout;
4206 * retransmission after a timeout.
4364 * timeout for a retransmitted segment.
4420 * Handle timeout from sender SWS avoidance.
4428 * state variable, if the timeout is set
4479 tcp_xmit_ctl("tcp_timer: RST sent on timeout "
4491 * so that in next timeout, we will do the above
4497 * later if new timeout value is greater than
4549 * This is after a timeout and tcp_rto is backed off. Set
6998 * Wait for rexmit timeout.