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

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_timer.c592 if (++tp->t_rxtshift > TCP_MAXRXTSHIFT ||
597 tp->t_rxtshift >= 4)) {
604 tp->t_rxtshift = TCP_MAXRXTSHIFT;
614 if (tp->t_rxtshift == 1) {
641 rexmt = TCP_REXMTVAL(tp) * tcp_syn_backoff[tp->t_rxtshift];
643 rexmt = TCP_REXMTVAL(tp) * tcp_backoff[tp->t_rxtshift];
659 (tp->t_rxtshift == 2)) {
694 if ((tp->t_flags & TF_BLACKHOLE) && (tp->t_rxtshift > 4)) {
718 (tp->t_rxtshift == tcp_broken_peer_syn_rxmit_thres))
729 if (tp->t_rxtshift > TCP_MAXRXTSHIF
[all...]
H A Dtcp_output.c403 tp->t_rxtshift = 0;
574 tp->t_rxtshift = 0;
703 tp->t_rxtshift = 0;
963 tp->t_rxtshift = 0;
1669 tp->t_rxtshift = 0;
2192 if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift == 0 &&
2225 t * tcp_backoff[tp->t_rxtshift],
2229 if (tp->t_rxtshift < TCP_MAXRXTSHIFT)
2230 tp->t_rxtshift++;
H A Dtcp_var.h273 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:tcpcb
588 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:otcpcb
826 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:xtcpcb64
909 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member in struct:xtcpcb_n
H A Din_pcblist.c233 xt->t_rxtshift = tp->t_rxtshift;
H A Dtcp_subr.c1269 } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 &&
1346 otp->t_rxtshift = tp->t_rxtshift;
1532 otp->t_rxtshift = tp->t_rxtshift;
H A Dtcp_input.c2269 if (tp->t_rxtshift == 1 &&
2280 tp->t_rxtshift = 0;
3393 if (tp->t_rxtshift == 1 &&
3403 tp->t_rxtshift = 0;
4248 tp->t_rxtshift = 0;
4895 tp->t_rxtshift = 0;

Completed in 101 milliseconds