Home | History | Annotate | Download | only in slirp-android

Lines Matching refs:snd_max

87 	idle = (tp->snd_max == tp->snd_una);
186 if (SEQ_LT(tp->snd_nxt, tp->snd_max))
338 else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
408 tp->snd_nxt == tp->snd_max)
416 * (and no SYN or FIN), use snd_max instead of snd_nxt
418 * state, snd_max might reflect one byte beyond the
426 ti->ti_seq = htonl(tp->snd_max);
472 * the retransmit. In persist state, just set snd_max.
489 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
490 tp->snd_max = tp->snd_nxt;
519 if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
520 tp->snd_max = tp->snd_nxt + len;