Searched refs:t_rxtshift (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/Network/slirp/
H A Dtcp_timer.c199 if (++tp->t_rxtshift > TCP_MAXRXTSHIFT)
221 tp->t_rxtshift = TCP_MAXRXTSHIFT;
232 tp->t_rxtshift = 6;
235 rexmt = TCP_REXMTVAL(tp) * tcp_backoff[tp->t_rxtshift];
247 if (tp->t_rxtshift > TCP_MAXRXTSHIFT / 4)
H A Dtcp_output.c163 tp->t_rxtshift = 0;
290 tp->t_rxtshift = 0;
638 tp->t_rxtshift = 0;
729 t * tcp_backoff[tp->t_rxtshift],
731 if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
732 tp->t_rxtshift++;
H A Dtcp_var.h83 int16_t t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:tcpcb
H A Dtcp_input.c1963 tp->t_rxtshift = 0;

Completed in 340 milliseconds