Home
last modified time | relevance | path

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

/external/openthread/third_party/tcplp/bsdtcp/
Dtcp_sack.c259 hole->rxmit = start; in tcp_sackhole_alloc()
464 tp->sackhint.sack_bytes_rexmit -= (cur->rxmit - cur->start); in tcp_sack_doack()
483 cur->rxmit = SEQ_MAX(cur->rxmit, cur->start); in tcp_sack_doack()
490 cur->rxmit = SEQ_MIN(cur->rxmit, cur->end); in tcp_sack_doack()
499 if (SEQ_GT(cur->rxmit, temp->rxmit)) { in tcp_sack_doack()
500 temp->rxmit = cur->rxmit; in tcp_sack_doack()
502 += (temp->rxmit in tcp_sack_doack()
506 cur->rxmit = SEQ_MIN(cur->rxmit, in tcp_sack_doack()
511 tp->sackhint.sack_bytes_rexmit += (cur->rxmit - cur->start); in tcp_sack_doack()
584 if (SEQ_LT(p->rxmit, p->end)) {
[all …]
Dtcp_output.c192 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { in tcp_output()
204 tp->snd_recover - p->rxmit)); in tcp_output()
206 len = ((long)ulmin(cwin, p->end - p->rxmit)); in tcp_output()
207 off = p->rxmit - tp->snd_una; in tcp_output()
432 if (SEQ_LT(p->rxmit + len, tp->snd_una + lbuf_used_space(&tp->sendbuf))) in tcp_output()
1020 th->th_seq = htonl(p->rxmit); in tcp_output()
1021 p->rxmit += len; in tcp_output()
1244 p->rxmit -= len; in tcp_output()
Dtcp_var.h104 tcp_seq rxmit; /* next seq. no in hole to be retransmitted */ member