Home
last modified time | relevance | path

Searched refs:snd_nxt (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/third_party/tcplp/bsdtcp/
Dtcp_output.c138 (tp->snd_nxt != tp->snd_una)) /* not a retransmit */ in tcp_output()
170 SEQ_LT(tp->snd_nxt, tp->snd_max)) in tcp_output()
175 off = tp->snd_nxt - tp->snd_una; in tcp_output()
324 (tp->snd_nxt - tp->sack_newdata) - in tcp_output()
338 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) { in tcp_output()
410 tp->snd_nxt = tp->snd_una; in tcp_output()
480 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + in tcp_output()
531 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ in tcp_output()
647 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una)) in tcp_output()
733 tp->snd_nxt = tp->iss; in tcp_output()
[all …]
Dtcp_sack.c560 (tp->snd_nxt - tp->sack_newdata) + num_segs * tp->t_maxseg); in tcp_sack_partialack()
645 if (SEQ_GEQ(tp->snd_nxt, tp->snd_fack)) in tcp_sack_adjust()
653 if (SEQ_LT(tp->snd_nxt, cur->end)) in tcp_sack_adjust()
655 if (SEQ_GEQ(tp->snd_nxt, p->start)) in tcp_sack_adjust()
658 tp->snd_nxt = p->start; in tcp_sack_adjust()
662 if (SEQ_LT(tp->snd_nxt, cur->end)) in tcp_sack_adjust()
664 tp->snd_nxt = tp->snd_fack; in tcp_sack_adjust()
Dtcp_input.c275 tp->snd_nxt = tp->snd_max; in cc_cong_signal()
841 tp->snd_nxt = tp->iss/* + 1*/; in tcp_input()
951 tp->snd_nxt = tp->iss; in tcp_input()
1213 tp->snd_nxt == tp->snd_max && in tcp_do_segment()
1580 tp->snd_nxt = th->th_ack; in tcp_do_segment()
1633 tp->snd_nxt--; in tcp_do_segment()
1742 tcp_respond(tp, tp->instance, ip6, th, tp->rcv_nxt, tp->snd_nxt, TH_ACK); in tcp_do_segment()
1769 tcp_respond(tp, tp->instance, ip6, th, tp->rcv_nxt, tp->snd_nxt, TH_ACK); in tcp_do_segment()
2120 awnd = (tp->snd_nxt - tp->snd_fack) + in tcp_do_segment()
2135 tcp_seq onxt = tp->snd_nxt; in tcp_do_segment()
[all …]
Dtcp_timewait.c159 nth->th_seq = htonl(tp->snd_nxt); in tcp_twrespond()
391 th->th_seq != tp->rcv_nxt || th->th_ack != tp->snd_nxt) in tcp_twcheck()
Dtcp_seq.h65 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
Dtcp_timer.c445 tp->snd_nxt = tp->snd_una; in tcp_timer_rexmt()
Dtcp_var.h233 tcp_seq snd_nxt; /* send next */ member
/openthread-latest/third_party/tcplp/bsdtcp/cc/
Dcc_newreno.c143 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received()