Home
last modified time | relevance | path

Searched refs:SACK_ENABLED (Results 1 – 7 of 7) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_input.c1546 if ((SACK_ENABLED(tp) || tp->t_early_rexmt_count < TCP_EARLY_REXMT_LIMIT) && in tcp_early_rexmt_check()
1548 (tp->t_dupacks == 1 || (SACK_ENABLED(tp) && !TAILQ_EMPTY(&tp->snd_holes)))) { in tcp_early_rexmt_check()
1556 if (SACK_ENABLED(tp) && in tcp_early_rexmt_check()
1818 if (SACK_ENABLED(tp) && SEQ_LT(tp->send_highest_sack, tp->snd_una)) { in tcp_update_snd_una()
2964 ((!(SACK_ENABLED(tp)) && in tcp_input()
2966 (SACK_ENABLED(tp) && to.to_nsacks == 0 && in tcp_input()
3075 if (SACK_ENABLED(tp) && tp->rcv_numsacks) { in tcp_input()
4277 if (SACK_ENABLED(tp) && in tcp_input()
4319 if (SACK_ENABLED(tp) && to.to_nsacks > 0) { in tcp_input()
4334 if (SACK_ENABLED(tp) && in tcp_input()
[all …]
H A Dtcp_output.c328 if (SACK_ENABLED(tp)) { in tcp_tfo_check()
816 if (SACK_ENABLED(tp) && SEQ_LT(tp->snd_nxt, tp->snd_max)) { in tcp_output()
843 if (SACK_ENABLED(tp) && IN_FASTRECOVERY(tp) && in tcp_output()
1524 if (SACK_ENABLED(tp) && (tp->t_state >= TCPS_ESTABLISHED) && in tcp_output()
1662 if (SACK_ENABLED(tp) && ((tp->t_flags & TF_NOOPT) == 0)) { in tcp_output()
1718 if (SACK_ENABLED(tp) && ((tp->t_flags & TF_NOOPT) == 0)) { in tcp_output()
2274 if (SACK_ENABLED(tp) && len > 1) { in tcp_output()
2474 SACK_ENABLED(tp) && !IN_FASTRECOVERY(tp) && in tcp_output()
H A Dtcp_cubic.c542 if (SACK_ENABLED(tp) && tp->t_lossflightsize > 0 && !tcp_cubic_minor_fixes) { in tcp_cubic_post_fr()
H A Dtcp_sack.c859 if (!SACK_ENABLED(tp) || IN_FASTRECOVERY(tp) || in tcp_sack_byte_islost()
H A Dtcp_timer.c1678 !SACK_ENABLED(tp) || in tcp_timers()
1836 VERIFY(SACK_ENABLED(tp)); in tcp_timers()
H A Dtcp_usrreq.c1671 if (SACK_ENABLED(tp)) { in tcp_fill_info()
1932 if (SACK_ENABLED(tp)) { in tcp_connection_fill_info()
H A Dtcp_var.h692 #define SACK_ENABLED(tp) (tp->t_flagsext & TF_SACK_ENABLE) macro