Home
last modified time | relevance | path

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

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_sack.c332 tcp_seq sacked_seq, tcp_seq snd_fack) in tcp_sack_detect_reordering() argument
340 if (SEQ_GT(s->end, snd_fack)) { in tcp_sack_detect_reordering()
387 VERIFY(SEQ_GEQ(snd_fack, s->rxmit)); in tcp_sack_detect_reordering()
513 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack); in tcp_sack_doack()
516 old_snd_fack = tp->snd_fack; in tcp_sack_doack()
529 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
537 temp = tcp_sackhole_insert(tp, tp->snd_fack, sblkp->start, NULL); in tcp_sack_doack()
539 tp->snd_fack = sblkp->end; in tcp_sack_doack()
554 SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack()
558 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.c3277 if (SEQ_LT(tp->snd_fack, th->th_ack)) { in tcp_input()
3285 tp->snd_fack = th->th_ack; in tcp_input()
4962 SEQ_LT(tp->snd_fack, highest_sacked_seq)) { in tcp_input()
4963 tp->snd_fack = highest_sacked_seq; in tcp_input()
5121 awnd = (tp->snd_nxt - tp->snd_fack) + tp->sackhint.sack_bytes_rexmit; in tcp_input()
5412 if (SEQ_LT(tp->snd_fack, highest_sacked_seq)) { in tcp_input()
5413 tp->snd_fack = highest_sacked_seq; in tcp_input()
5415 if (SEQ_LT(tp->snd_fack, th->th_ack)) { in tcp_input()
5416 tp->snd_fack = th->th_ack; in tcp_input()
H A Dtcp_output.c1189 SEQ_LT(tp->snd_fack, tp->snd_recover) && in tcp_output()
1191 len = min((tp->snd_recover - tp->snd_fack), in tcp_output()
1847 tp->snd_una == tp->iss + 1 && (tp->snd_fack == tp->iss) in tcp_output()
1869 tp->snd_fack = tp->iss; in tcp_output()
H A Dtcp_var.h598 tcp_seq snd_fack; /* last seq number(+1) sack'd by rcv'r*/ member