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

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_timer.c672 if (++tp->t_rxtshift > TCP_MAXRXTSHIFT ||
677 tp->t_rxtshift >= 4)) {
684 tp->t_rxtshift = TCP_MAXRXTSHIFT;
696 if (tp->t_rxtshift == 1 &&
709 if ((tp->t_rxtshift == mptcp_fail_thresh) &&
718 tp->t_rxtshift > tp->t_adaptive_wtimo &&
727 rexmt = TCP_REXMTVAL(tp) * tcp_syn_backoff[tp->t_rxtshift];
728 tp->t_stat.synrxtshift = tp->t_rxtshift;
731 rexmt = TCP_REXMTVAL(tp) * tcp_backoff[tp->t_rxtshift];
747 (tp->t_rxtshift
[all...]
H A Dtcp_output.c417 tp->t_rxtshift = 0;
594 tp->t_rxtshift = 0;
724 tp->t_rxtshift = 0;
1035 tp->t_rxtshift = 0;
1841 tp->t_rxtshift = 0;
2395 if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift == 0 &&
2428 t * tcp_backoff[tp->t_rxtshift],
2432 if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
2433 tp->t_rxtshift++;
H A Dtcp_var.h297 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:tcpcb
690 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:otcpcb
963 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:xtcpcb64
1045 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:xtcpcb_n
H A Din_pcblist.c234 xt->t_rxtshift = tp->t_rxtshift;
H A Dtcp_subr.c1301 } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
1378 otp->t_rxtshift = tp->t_rxtshift;
1560 otp->t_rxtshift = tp->t_rxtshift;
H A Dtcp_input.c1260 } else if (tp->t_rxtshift == 1 &&
1300 tp->t_rxtshift = 0;
2344 if (tp->t_rxtshift > 0 &&
3684 if (tp->t_rxtshift > 0 &&
4618 tp->t_rxtshift = 0;
5311 tp->t_rxtshift = 0;
H A Dmptcp_opt.c77 if (tp->t_rxtshift > mptcp_mpcap_retries)

Completed in 101 milliseconds