Home
last modified time | relevance | path

Searched refs:sack_bytes_rexmit (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.81.4/bsd/netinet/
H A Dtcp_sack.c581 tp->sackhint.sack_bytes_rexmit -= (cur->rxmit - cur->start); in tcp_sack_doack()
582 if (tp->sackhint.sack_bytes_rexmit < 0) { in tcp_sack_doack()
583 tp->sackhint.sack_bytes_rexmit = 0; in tcp_sack_doack()
632 tp->sackhint.sack_bytes_rexmit in tcp_sack_doack()
649 tp->sackhint.sack_bytes_rexmit += (cur->rxmit - cur->start); in tcp_sack_doack()
674 tp->sackhint.sack_bytes_rexmit = 0; in tcp_free_sackholes()
790 *sack_bytes_rexmt = tp->sackhint.sack_bytes_rexmit; in tcp_sack_output()
H A Dtcp_output.c594 VERIFY(tp->sackhint.sack_bytes_rexmit >= 0); in tcp_flight_size()
2963 tp->sackhint.sack_bytes_rexmit += len; in tcp_output()
3475 tp->sackhint.sack_bytes_rexmit -= lost; in tcp_output()
3476 if (tp->sackhint.sack_bytes_rexmit < 0) { in tcp_output()
3477 tp->sackhint.sack_bytes_rexmit = 0; in tcp_output()
H A Dtcp_var.h204 int sack_bytes_rexmit; member
H A Dtcp_input.c5304 awnd = (tp->snd_nxt - tp->snd_fack) + tp->sackhint.sack_bytes_rexmit; in tcp_input()