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

Lines Matching refs:snd_nxt

97 	off = tp->snd_nxt - tp->snd_una;
145 * cancel pending retransmit and pull snd_nxt
153 tp->snd_nxt = tp->snd_una;
161 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
186 if (SEQ_LT(tp->snd_nxt, tp->snd_max))
227 ((tp->t_flags & TF_SENTFIN) == 0 || tp->snd_nxt == tp->snd_una))
277 tp->snd_nxt = tp->iss;
338 else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
408 tp->snd_nxt == tp->snd_max)
409 tp->snd_nxt--;
411 * If we are doing retransmissions, then snd_nxt will
416 * (and no SYN or FIN), use snd_max instead of snd_nxt
419 * right edge of the window, so use snd_nxt in that
424 ti->ti_seq = htonl(tp->snd_nxt);
448 if (SEQ_GT(tp->snd_up, tp->snd_nxt)) {
449 ti->ti_urp = htons((u_int16_t)(tp->snd_up - tp->snd_nxt));
475 tcp_seq startseq = tp->snd_nxt;
478 * Advance snd_nxt over sequence space of this segment.
482 tp->snd_nxt++;
484 tp->snd_nxt++;
488 tp->snd_nxt += len;
489 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
490 tp->snd_max = tp->snd_nxt;
511 tp->snd_nxt != tp->snd_una) {
519 if (SEQ_GT(tp->snd_nxt + len, tp->snd_max))
520 tp->snd_max = tp->snd_nxt + len;