Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/netinet/ !
H A Dtcp_sack.c331 tcp_seq sacked_seq, tcp_seq snd_fack) in tcp_sack_detect_reordering() argument
339 if (SEQ_GT(s->end, snd_fack)) { in tcp_sack_detect_reordering()
376 VERIFY(SEQ_GEQ(snd_fack, s->rxmit)); in tcp_sack_detect_reordering()
503 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack); in tcp_sack_doack()
506 old_snd_fack = tp->snd_fack; in tcp_sack_doack()
519 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
527 temp = tcp_sackhole_insert(tp, tp->snd_fack, sblkp->start, NULL); in tcp_sack_doack()
529 tp->snd_fack = sblkp->end; in tcp_sack_doack()
544 SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
548 SEQ_LT(tp->snd_fack, sblkp->end)) { in tcp_sack_doack()
[all …]
H A Dtcp_rack.c442 if (SEQ_LT(seg->end_seq, tp->snd_fack) && in tcp_rack_detect_reordering_acked()
H A Dtcp_input.c3804 if (SEQ_LT(tp->snd_fack, th->th_ack)) { in tcp_input()
3812 tp->snd_fack = th->th_ack; in tcp_input()
5142 SEQ_LT(tp->snd_fack, highest_sacked_seq)) { in tcp_input()
5143 tp->snd_fack = highest_sacked_seq; in tcp_input()
5303 awnd = (tp->snd_nxt - tp->snd_fack) + tp->sackhint.sack_bytes_rexmit; in tcp_input()
5591 if (SEQ_LT(tp->snd_fack, highest_sacked_seq)) { in tcp_input()
5592 tp->snd_fack = highest_sacked_seq; in tcp_input()
5594 if (SEQ_LT(tp->snd_fack, th->th_ack)) { in tcp_input()
5595 tp->snd_fack = th->th_ack; in tcp_input()
H A Dtcp_output.c1425 SEQ_LT(tp->snd_fack, tp->snd_recover) && in tcp_output()
1427 len = min((tp->snd_recover - tp->snd_fack), in tcp_output()
2044 tp->snd_una == tp->iss + 1 && (tp->snd_fack == tp->iss) in tcp_output()
2067 tp->snd_fack = tp->iss; in tcp_output()
H A Dtcp_var.h630 tcp_seq snd_fack; /* last seq number(+1) sack'd by rcv'r*/ member