Home
last modified time | relevance | path

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

/external/openthread/third_party/tcplp/bsdtcp/
Dtcp_output.c132 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); in tcp_output()
155 SEQ_LT(tp->snd_nxt, tp->snd_max)) in tcp_output()
486 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ in tcp_output()
610 SEQ_GT(tp->snd_max, tp->snd_una) && in tcp_output()
781 else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { in tcp_output()
944 tp->snd_nxt == tp->snd_max) in tcp_output()
979 if (len > 0 && SEQ_GEQ(tp->snd_nxt, tp->snd_max) && in tcp_output()
1018 th->th_seq = htonl(tp->snd_max); in tcp_output()
1032 if (len > 0 && !tcp_timer_active(tp, TT_PERSIST) && SEQ_LT(ntohl(th->th_seq), tp->snd_max)) { in tcp_output()
1150 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) { in tcp_output()
[all …]
Dtcp_input.c228 tp->snd_recover = tp->snd_max; in cc_cong_signal()
235 tp->snd_recover = tp->snd_max; in cc_cong_signal()
270 tp->snd_nxt = tp->snd_max; in cc_cong_signal()
786 tp->snd_max = tp->iss/* + 1*/; in tcp_input()
1115 tp->snd_nxt == tp->snd_max && in tcp_do_segment()
1136 SEQ_LEQ(th->th_ack, tp->snd_max) && in tcp_do_segment()
1221 if (tp->snd_una == tp->snd_max) in tcp_do_segment()
1398 SEQ_GT(th->th_ack, tp->snd_max))) { in tcp_do_segment()
1423 SEQ_GT(th->th_ack, tp->snd_max))) { in tcp_do_segment()
1893 if (SEQ_GT(th->th_ack, tp->snd_max)) { in tcp_do_segment()
[all …]
Dtcp_seq.h65 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
Dtcp_sack.c358 SEQ_LT(sack.start, tp->snd_max) && in tcp_sack_doack()
360 SEQ_LEQ(sack.end, tp->snd_max)) in tcp_sack_doack()
Dtcp_timer.c446 tp->snd_recover = tp->snd_max; in tcp_timer_rexmt()
Dtcp_var.h228 tcp_seq snd_max; /* highest sequence number sent; member
/external/openthread/third_party/tcplp/bsdtcp/cc/
Dcc_newreno.c143 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received()
233 CCV(ccv, snd_max))) in newreno_post_recovery()
234 CCV(ccv, snd_cwnd) = CCV(ccv, snd_max) - in newreno_post_recovery()
/external/openthread/src/core/net/
Dtcp6.cpp478 return tp.snd_max - tp.snd_una; in GetInFlightBytes()