Searched refs:snd_max (Results 1 – 8 of 8) sorted by relevance
| /openthread-latest/third_party/tcplp/bsdtcp/ |
| D | tcp_output.c | 137 SEQ_GT(tp->snd_max, tp->snd_una) && /* initial SYN or SYN|ACK sent */ in tcp_output() 147 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); in tcp_output() 170 SEQ_LT(tp->snd_nxt, tp->snd_max)) in tcp_output() 531 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ in tcp_output() 655 SEQ_GT(tp->snd_max, tp->snd_una) && in tcp_output() 871 else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { in tcp_output() 1034 tp->snd_nxt == tp->snd_max) in tcp_output() 1069 if (len > 0 && SEQ_GEQ(tp->snd_nxt, tp->snd_max) && in tcp_output() 1108 th->th_seq = htonl(tp->snd_max); in tcp_output() 1122 if (len > 0 && !tcp_timer_active(tp, TT_PERSIST) && SEQ_LT(ntohl(th->th_seq), tp->snd_max)) { in tcp_output() [all …]
|
| D | tcp_input.c | 229 tp->snd_recover = tp->snd_max; in cc_cong_signal() 236 tp->snd_recover = tp->snd_max; in cc_cong_signal() 275 tp->snd_nxt = tp->snd_max; in cc_cong_signal() 840 tp->snd_max = tp->iss/* + 1*/; in tcp_input() 950 tp->snd_max = tp->iss; in tcp_input() 1213 tp->snd_nxt == tp->snd_max && in tcp_do_segment() 1234 SEQ_LEQ(th->th_ack, tp->snd_max) && in tcp_do_segment() 1319 if (tp->snd_una == tp->snd_max) in tcp_do_segment() 1496 SEQ_GT(th->th_ack, tp->snd_max))) { in tcp_do_segment() 1544 SEQ_GT(th->th_ack, tp->snd_max))) { in tcp_do_segment() [all …]
|
| D | tcp_seq.h | 65 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
|
| D | tcp_sack.c | 358 SEQ_LT(sack.start, tp->snd_max) && in tcp_sack_doack() 360 SEQ_LEQ(sack.end, tp->snd_max)) in tcp_sack_doack()
|
| D | tcp_timer.c | 446 tp->snd_recover = tp->snd_max; in tcp_timer_rexmt()
|
| D | tcp_var.h | 230 tcp_seq snd_max; /* highest sequence number sent; member
|
| /openthread-latest/third_party/tcplp/bsdtcp/cc/ |
| D | cc_newreno.c | 143 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()
|
| /openthread-latest/src/core/net/ |
| D | tcp6.cpp | 493 return tp.snd_max - tp.snd_una; in GetInFlightBytes()
|