Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet/cc/
H A Dcc.h85 int bytes_this_ack; /* # bytes acked by the current ACK. */ member
H A Dcc_newreno.c186 incr = min(ccv->bytes_this_ack, in newreno_ack_received()
190 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in newreno_ack_received()
H A Dcc_chd.c199 incr = min(ccv->bytes_this_ack, in chd_window_increase()
203 incr = min(ccv->bytes_this_ack, in chd_window_increase()
H A Dcc_dctcp.c126 bytes_acked = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in dctcp_ack_received()
129 bytes_acked = ccv->bytes_this_ack; in dctcp_ack_received()
/f-stack/freebsd/netinet/tcp_stacks/
H A Dbbr.c2167 log.u_bbr.flex3 = bytes_this_ack; in bbr_log_type_cwndupd()
3650 saved_bytes = bytes_this_ack; in bbr_ack_received()
3651 bytes_this_ack += sack_changed; in bbr_ack_received()
3652 if (bytes_this_ack > prev_acked) { in bbr_ack_received()
3653 bytes_this_ack -= prev_acked; in bbr_ack_received()
3659 bytes_this_ack = maxseg; in bbr_ack_received()
3662 bytes_this_ack = 0; in bbr_ack_received()
3682 bytes_this_ack; in bbr_ack_received()
3724 if (bytes_this_ack > maxseg) in bbr_ack_received()
3725 bytes_this_ack = maxseg; in bbr_ack_received()
[all …]
H A Drack.c3871 tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th); in rack_ack_received()
3876 if (tp->ccv->bytes_this_ack > max) { in rack_ack_received()
3877 tp->ccv->bytes_this_ack = max; in rack_ack_received()
3906 tp->t_bytes_acked += tp->ccv->bytes_this_ack; in rack_ack_received()
/f-stack/freebsd/netinet/
H A Dtcp_input.c323 tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received()
337 tp->ccv->bytes_this_ack / (tcp_maxseg(tp) * nsegs)); in cc_ack_received()
362 tp->t_bytes_acked += tp->ccv->bytes_this_ack; in cc_ack_received()