Searched refs:rxmit (Results 1 – 3 of 3) sorted by relevance
| /netbsd/src/sys/netinet/ |
| D | tcp_sack.c | 197 hole->start = hole->rxmit = start; in sack_inserthole() 350 cur->rxmit = SEQ_MAX(cur->rxmit, cur->start); in tcp_sack_option() 357 cur->rxmit = SEQ_MIN(cur->rxmit, cur->end); in tcp_sack_option() 373 tmp->rxmit = SEQ_MAX(cur->rxmit, tmp->start); in tcp_sack_option() 375 cur->rxmit = SEQ_MIN(cur->rxmit, cur->end); in tcp_sack_option() 415 if (SEQ_LT(cur->rxmit, cur->start)) in tcp_del_sackholes() 416 cur->rxmit = cur->start; in tcp_del_sackholes() 453 if (SEQ_LT(cur->rxmit, cur->end)) { in tcp_sack_output() 454 if (SEQ_LT(cur->rxmit, tp->snd_una)) { in tcp_sack_output() 458 *sack_bytes_rexmt += (cur->rxmit - cur->start); in tcp_sack_output() [all …]
|
| D | tcp_output.c | 712 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { in tcp_output() 723 len = ((long)ulmin(cwin, tp->snd_recover - p->rxmit)); in tcp_output() 725 len = ((long)ulmin(cwin, p->end - p->rxmit)); in tcp_output() 726 off = p->rxmit - tp->snd_una; in tcp_output() 730 KASSERT(p->rxmit + len == tp->snd_max); in tcp_output() 910 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc)) in tcp_output() 1357 th->th_seq = htonl(p->rxmit); in tcp_output() 1358 p->rxmit += len; in tcp_output() 1622 p->rxmit -= len; in tcp_output()
|
| D | tcp_var.h | 203 tcp_seq rxmit; member
|