Searched refs:rxmit (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_sack.c | 481 hole->rxmit = start; in tcp_sackhole_alloc() 683 temp->rxmit = temp->start; in tcp_sack_doack() 784 (SEQ_MIN(cur->rxmit, cur->end) - cur->start); in tcp_sack_doack() 808 cur->rxmit = SEQ_MAX(cur->rxmit, cur->start); in tcp_sack_doack() 817 cur->rxmit = SEQ_MIN(cur->rxmit, cur->end); in tcp_sack_doack() 818 if ((tp->t_flags & TF_LRD) && SEQ_GEQ(cur->rxmit, cur->end)) in tcp_sack_doack() 819 cur->rxmit = tp->snd_recover; in tcp_sack_doack() 829 if (SEQ_GT(cur->rxmit, temp->rxmit)) { in tcp_sack_doack() 830 temp->rxmit = cur->rxmit; in tcp_sack_doack() 832 (SEQ_MIN(temp->rxmit, in tcp_sack_doack() [all …]
|
H A D | tcp_output.c | 311 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { in tcp_default_output() 323 len = SEQ_SUB(tp->snd_recover, p->rxmit); in tcp_default_output() 331 len = SEQ_SUB(p->end, p->rxmit); in tcp_default_output() 347 off = SEQ_SUB(p->rxmit, tp->snd_una); in tcp_default_output() 570 if (SEQ_LT((sack_rxmit ? p->rxmit : tp->snd_nxt) + len, in tcp_default_output() 1247 th->th_seq = htonl(p->rxmit); in tcp_default_output() 1248 p->rxmit += len; in tcp_default_output() 1255 if ((tp->t_flags & TF_LRD) && SEQ_GEQ(p->rxmit, p->end)) in tcp_default_output() 1256 p->rxmit = tp->snd_recover; in tcp_default_output() 1656 SEQ_LT(tp->snd_nxt, SEQ_MIN(p->rxmit, p->end))) { in tcp_default_output() [all …]
|
H A D | tcp_ecn.c | 404 tcp_ecn_output_established(struct tcpcb *tp, uint16_t *thflags, int len, bool rxmit) in tcp_ecn_output_established() argument 416 !rxmit && in tcp_ecn_output_established()
|
H A D | tcp_var.h | 114 tcp_seq rxmit; /* next seq. no in hole to be retransmitted */ member
|