Home
last modified time | relevance | path

Searched refs:TCP_RACK_ENABLED (Results 1 – 5 of 5) sorted by relevance

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_sack.c446 if (!TCP_RACK_ENABLED(tp) && SEQ_LT(tp->snd_una, th_ack) && !TAILQ_EMPTY(&tp->snd_holes)) { in tcp_sack_doack()
488 if (TCP_RACK_ENABLED(tp)) { in tcp_sack_doack()
973 if (TCP_RACK_ENABLED(tp) && *dsack_tlp == false) { in tcp_sack_process_dsack()
H A Dtcp_output.c577 if (TCP_RACK_ENABLED(tp)) { in tcp_flight_size()
586 if (TCP_RACK_ENABLED(tp)) { in tcp_flight_size()
983 if (TCP_RACK_ENABLED(tp)) { in tcp_output()
1034 if (TCP_RACK_ENABLED(tp)) { in tcp_output()
1153 bool rack_in_recovery = TCP_RACK_ENABLED(tp) && IN_FASTRECOVERY(tp); in tcp_output()
1190 !(tp->t_flagsext & TF_RESCUE_RXT) && !TCP_RACK_ENABLED(tp)) { in tcp_output()
1460 if (TCP_RACK_ENABLED(tp)) { in tcp_output()
1574 if (TCP_RACK_ENABLED(tp) && rack_sack_rxmit == 0) { in tcp_output()
2772 if (TCP_RACK_ENABLED(tp)) { in tcp_output()
3188 if (TCP_RACK_ENABLED(tp) && len != 0) { in tcp_output()
[all …]
H A Dtcp_input.c1396 if (TCP_RACK_ENABLED(tp)) { in tcp_bad_rexmt_restore_state()
1507 if (TCP_RACK_ENABLED(tp)) { in tcp_early_rexmt_check()
3275 if (TCP_RACK_ENABLED(tp)) { in tcp_input()
4895 if (TCP_RACK_ENABLED(tp)) { in tcp_input()
4961 if (TCP_RACK_ENABLED(tp) && sack_bytes_acked > 0 && in tcp_input()
5063 if (TCP_RACK_ENABLED(tp) && tcp_rack_detect_loss_and_arm_timer(tp, tp->t_dupacks)) { in tcp_input()
5081 …} else if ((!TCP_RACK_ENABLED(tp) && tp->t_dupacks > tp->t_rexmtthresh && old_dupacks >= tp->t_rex… in tcp_input()
5143 … } else if (rack_loss_detected || (!TCP_RACK_ENABLED(tp) && tp->t_dupacks >= tp->t_rexmtthresh)) { in tcp_input()
5219 if (TCP_RACK_ENABLED(tp)) { in tcp_input()
5297 if (!TCP_RACK_ENABLED(tp)) { in tcp_input()
[all …]
H A Dtcp_timer.c1290 if (TCP_RACK_ENABLED(tp)) { in tcp_timers()
1894 if (TCP_RACK_ENABLED(tp)) { in tcp_timers()
H A Dtcp_var.h877 #define TCP_RACK_ENABLED(tp) ((tp->t_flagsext & TF_RACK_ENABLED) && SACK_ENABLED(tp) && !TFO_ENA… macro