Home
last modified time | relevance | path

Searched refs:t_rxtshift (Results 1 – 12 of 12) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_timer.c1081 if (++tp->t_rxtshift > TCP_MAXRXTSHIFT || in tcp_timers()
1085 (tp->t_flags & TF_SENTFIN) != 0 && tp->t_rxtshift >= 4) || in tcp_timers()
1086 (tp->t_rxtshift > 4 && last_sleep_ms >= TCP_SLEEP_TOO_LONG)) { in tcp_timers()
1097 tp->t_rxtshift = TCP_MAXRXTSHIFT - 1; in tcp_timers()
1108 if (tp->t_rxtshift >= TCP_MAXRXTSHIFT) { in tcp_timers()
1117 tp->t_rxtshift = TCP_MAXRXTSHIFT; in tcp_timers()
1137 if (tp->t_rxtshift == 1 && in tcp_timers()
1151 if ((tp->t_rxtshift >= mptcp_fail_thresh) && in tcp_timers()
1169 tp->t_rxtshift > tp->t_adaptive_wtimo && in tcp_timers()
1207 ((tp->t_state != TCPS_SYN_SENT && tp->t_rxtshift > 1) || in tcp_timers()
[all …]
H A Dmptcp.c790 (curbest == NULL || tp->t_rxtshift == 0 || in mptcp_choose_subflow()
791 sototcpcb(curbest->mpts_socket)->t_rxtshift)) { in mptcp_choose_subflow()
800 sototcpcb(curbest->mpts_socket)->t_rxtshift && in mptcp_choose_subflow()
801 tp->t_rxtshift == 0) { in mptcp_choose_subflow()
829 return tp->t_rxtshift >= fail_thresh && in mptcp_subflow_is_slow()
860 tp->t_srtt, tp->t_rxtshift, cheap_rtt, exp_rtt, in mptcp_get_subflow()
977 secondtp->t_rxtshift == 0) { in mptcp_get_subflow()
H A Dtcp_var.h363 uint16_t t_rxtshift; /* log(2) of rexmt exp. backoff */ member
781 (_tp_)->t_rxtshift = 0; \
935 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member
1334 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member
1417 int t_rxtshift; /* log(2) of rexmt exp. backoff */ member
H A Dtcp_sack.c351 if (tp->t_rxtshift > 0) { in tcp_sack_detect_reordering()
961 if (((tp->t_rxtshift == 1 && first_sack.start == tp->snd_una) || in tcp_sack_process_dsack()
H A Dtcp_output.c318 (tp->t_rxtshift <= mptcp_mpcap_retries || in tcp_tfo_check()
2477 tp->t_rxtshift == 0 && in tcp_output()
3180 if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift == 0 && in tcp_ip_output()
3218 t * tcp_backoff[tp->t_rxtshift], in tcp_setpersist()
3222 if (tp->t_rxtshift < TCP_MAXRXTSHIFT) { in tcp_setpersist()
3223 tp->t_rxtshift++; in tcp_setpersist()
H A Din_pcblist.c251 xt->t_rxtshift = tp->t_rxtshift; in tcpcb_to_xtcpcb_n()
H A Dtcp_subr.c1782 } else if (tp->t_state < TCPS_ESTABLISHED && tp->t_rxtshift > 3 && in tcp_notify()
1880 otp->t_rxtshift = tp->t_rxtshift; in tcpcb_to_otcpcb()
2064 otp->t_rxtshift = tp->t_rxtshift; in tcpcb_to_xtcpcb64()
3840 if (tp->t_rxtshift >= TCP_CONNECTIVITY_PROBES_MAX) { in tcp_get_connectivity_status()
H A Dtcp_log.c252 tp->t_rttmin, tp->t_rxtcur, tp->t_rxtshift); in tcp_log_rtt_info()
H A Dtcp_input.c1383 if ((tp->t_rxtshift == 1 || (tp->t_flagsext & TF_SENT_TLPROBE)) && in tcp_detect_bad_rexmt()
1460 if (tp->t_rxtshift > 0 && in tcp_bad_rexmt_check()
1513 if (tp->t_rxtshift > 0 && (tp->t_flags & TF_BLACKHOLE) && in tcp_bad_rexmt_check()
3444 tp->t_rxtshift == 0) { in tcp_input()
3449 tp->t_rxtshift > 0) { in tcp_input()
H A Dmptcp_subr.c843 if (mptetoso(mpte)->so_snd.sb_cc != 0 && tp->t_rxtshift >= mptcp_fail_thresh * 2) { in mptcp_handover_use_cellular()
857 if (tp->t_rxtshift >= mptcp_fail_thresh * 2) { in mptcp_handover_use_cellular()
960 tp->t_rxtshift, in mptcp_check_subflows_and_add()
1165 …__func__, (unsigned long)VM_KERNEL_ADDRPERM(mpte), tp->t_rxtshift, mptetoso(mpte)->so_snd.sb_cc, w… in mptcp_pure_handover_subflows_remove()
1218 …__func__, (unsigned long)VM_KERNEL_ADDRPERM(mpte), tp->t_rxtshift, mptetoso(mpte)->so_snd.sb_cc, w… in mptcp_handover_subflows_remove()
H A Dtcp_usrreq.c1684 if (IN_FASTRECOVERY(tp) || tp->t_rxtshift > 0) { in tcp_fill_info()
1943 if (IN_FASTRECOVERY(tp) || tp->t_rxtshift > 0) { in tcp_connection_fill_info()
H A Dmptcp_opt.c91 tp->t_rxtshift > mptcp_mpcap_retries && in mptcp_setup_first_subflow_syn_opts()