Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/netinet/
H A Dtcp_sack.c257 hole->rxmit = start; in tcp_sackhole_alloc()
361 if (SEQ_LT(s->rxmit, sacked_seq) && in tcp_sack_detect_reordering()
376 VERIFY(SEQ_GEQ(snd_fack, s->rxmit)); in tcp_sack_detect_reordering()
581 tp->sackhint.sack_bytes_rexmit -= (cur->rxmit - cur->start); in tcp_sack_doack()
608 cur->rxmit = SEQ_MAX(cur->rxmit, cur->start); in tcp_sack_doack()
618 cur->rxmit = SEQ_MIN(cur->rxmit, cur->end); in tcp_sack_doack()
630 if (SEQ_GT(cur->rxmit, temp->rxmit)) { in tcp_sack_doack()
631 temp->rxmit = cur->rxmit; in tcp_sack_doack()
633 += (temp->rxmit in tcp_sack_doack()
637 cur->rxmit = SEQ_MIN(cur->rxmit, in tcp_sack_doack()
[all …]
H A Dtcp_output.c1292 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { in tcp_output()
1304 tp->snd_recover - p->rxmit)); in tcp_output()
1307 len = ((int32_t)min(cwin, p->end - p->rxmit)); in tcp_output()
1310 off = p->rxmit - tp->snd_una; in tcp_output()
1317 if (SEQ_LT(tp->snd_nxt, tp->snd_max) && SEQ_LEQ(tp->snd_nxt, p->rxmit) && in tcp_output()
1701 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc)) { in tcp_output()
2896 th->th_seq = htonl(p->rxmit); in tcp_output()
2897 tcp_rxtseg_insert(tp, p->rxmit, (p->rxmit + len - 1)); in tcp_output()
2898 p->rxmit += len; in tcp_output()
3396 if (SEQ_GT((p->rxmit - lost), in tcp_output()
[all …]
H A Dtcp_var.h197 tcp_seq rxmit; /* next seq. no in hole to be retransmitted */ member