Home
last modified time | relevance | path

Searched refs:rxmit (Results 1 – 3 of 3) sorted by relevance

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_sack.c257 hole->rxmit = start; in tcp_sackhole_alloc()
362 if (SEQ_LT(s->rxmit, sacked_seq) && in tcp_sack_detect_reordering()
387 VERIFY(SEQ_GEQ(snd_fack, s->rxmit)); in tcp_sack_detect_reordering()
591 tp->sackhint.sack_bytes_rexmit -= (cur->rxmit - cur->start); in tcp_sack_doack()
618 cur->rxmit = SEQ_MAX(cur->rxmit, cur->start); in tcp_sack_doack()
628 cur->rxmit = SEQ_MIN(cur->rxmit, cur->end); in tcp_sack_doack()
640 if (SEQ_GT(cur->rxmit, temp->rxmit)) { in tcp_sack_doack()
641 temp->rxmit = cur->rxmit; in tcp_sack_doack()
643 += (temp->rxmit in tcp_sack_doack()
647 cur->rxmit = SEQ_MIN(cur->rxmit, in tcp_sack_doack()
[all …]
H A Dtcp_output.c1056 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { in tcp_output()
1068 tp->snd_recover - p->rxmit)); in tcp_output()
1071 len = ((int32_t)min(cwin, p->end - p->rxmit)); in tcp_output()
1074 off = p->rxmit - tp->snd_una; in tcp_output()
1081 if (SEQ_LT(tp->snd_nxt, tp->snd_max) && SEQ_LEQ(tp->snd_nxt, p->rxmit) && in tcp_output()
1465 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc)) { in tcp_output()
2776 th->th_seq = htonl(p->rxmit); in tcp_output()
2777 tcp_rxtseg_insert(tp, p->rxmit, (p->rxmit + len - 1)); in tcp_output()
2778 p->rxmit += len; in tcp_output()
3304 if (SEQ_GT((p->rxmit - lost), in tcp_output()
[all …]
H A Dtcp_var.h184 tcp_seq rxmit; /* next seq. no in hole to be retransmitted */ member