Home
last modified time | relevance | path

Searched refs:t_bytes_acked (Results 1 – 8 of 8) sorted by relevance

/xnu-12377.61.12/bsd/netinet/
H A Dtcp_ledbat.c206 tp->t_bytes_acked += acked; in tcp_ledbat_congestion_avd()
207 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_ledbat_congestion_avd()
208 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_ledbat_congestion_avd()
271 tp->t_bytes_acked += bytes_acked; in ledbat_pp_congestion_avd()
272 if (tp->t_bytes_acked >= tp->snd_cwnd) { in ledbat_pp_congestion_avd()
274 tp->t_bytes_acked -= tp->snd_cwnd; in ledbat_pp_congestion_avd()
336 tp->t_bytes_acked = 0; in ledbat_pp_ack_rcvd()
357 tp->t_bytes_acked += bytes_acked; in ledbat_pp_ack_rcvd()
359 if (tp->t_bytes_acked >= tp->t_maxseg * gain_factor) { in ledbat_pp_ack_rcvd()
360 update = MIN(tp->t_bytes_acked / gain_factor, in ledbat_pp_ack_rcvd()
[all …]
H A Dtcp_newreno.c151 tp->t_bytes_acked += acked; in tcp_newreno_congestion_avd()
152 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_newreno_congestion_avd()
153 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_newreno_congestion_avd()
184 tp->t_bytes_acked += acked; in tcp_newreno_ack_rcvd()
185 if (tp->t_bytes_acked >= cw) { in tcp_newreno_ack_rcvd()
187 tp->t_bytes_acked -= cw; in tcp_newreno_ack_rcvd()
253 tp->t_bytes_acked = 0; in tcp_newreno_post_fr()
345 tp->t_bytes_acked = 0; in tcp_newreno_switch_cc()
H A Dtcp_prague.c199 tp->t_bytes_acked += acked; in tcp_cubic_ack_ca()
233 if (incr_bytes_acked > 0 && tp->t_bytes_acked >= incr_bytes_acked) { in tcp_cubic_ack_ca()
234 tp->t_bytes_acked -= incr_bytes_acked; in tcp_cubic_ack_ca()
380 tp->t_bytes_acked += acked; in prague_ca_after_ce()
389 if (tp->t_bytes_acked >= bytes_needed_for_increase) { in prague_ca_after_ce()
390 tp->t_bytes_acked -= bytes_needed_for_increase; in prague_ca_after_ce()
606 tp->t_bytes_acked = 0; in tcp_prague_cwnd_init_or_reset()
H A Dtcp_cubic.c114 tp->t_bytes_acked = 0; in tcp_cubic_cwnd_init_or_reset()
275 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd()
314 if (incr_win > 0 && tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
315 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
H A Dtcp_ccdbg.c121 dbg_state.ccd_bytes_acked = tp->t_bytes_acked; in tcp_ccdbg_trace()
H A Dtcp_var.h544 uint32_t t_bytes_acked; /* RFC 3465 variable for ABC, used by CCA only */ member
967 (_tp_)->t_bytes_acked = 0; \
H A Dtcp_output.c3504 tp->t_bytes_acked = 0; in tcp_output()
H A Dtcp_input.c7700 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()