Home
last modified time | relevance | path

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

/xnu-11215/bsd/netinet/
H A Dtcp_sack.c591 tp->sackhint.sack_bytes_rexmit -= (cur->rxmit - cur->start); in tcp_sack_doack()
592 if (tp->sackhint.sack_bytes_rexmit < 0) { in tcp_sack_doack()
593 tp->sackhint.sack_bytes_rexmit = 0; in tcp_sack_doack()
642 tp->sackhint.sack_bytes_rexmit in tcp_sack_doack()
659 tp->sackhint.sack_bytes_rexmit += (cur->rxmit - cur->start); in tcp_sack_doack()
684 tp->sackhint.sack_bytes_rexmit = 0; in tcp_free_sackholes()
800 *sack_bytes_rexmt = tp->sackhint.sack_bytes_rexmit; in tcp_sack_output()
H A Dtcp_output.c555 VERIFY(tp->sackhint.sack_bytes_rexmit >= 0); in tcp_flight_size()
2727 tp->sackhint.sack_bytes_rexmit += len; in tcp_output()
3236 tp->sackhint.sack_bytes_rexmit -= lost; in tcp_output()
3237 if (tp->sackhint.sack_bytes_rexmit < 0) { in tcp_output()
3238 tp->sackhint.sack_bytes_rexmit = 0; in tcp_output()
H A Dtcp_var.h190 int sack_bytes_rexmit; member
H A Dtcp_input.c5065 awnd = (tp->snd_nxt - tp->snd_fack) + tp->sackhint.sack_bytes_rexmit; in tcp_input()