HomeSort by relevance Sort by last modified time
    Searched refs:snd_max (Results 1 - 10 of 10) sorted by null

  /external/qemu/slirp/
tcp_output.c 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
    [all...]
tcp.h 163 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = (tp)->iss
tcp_var.h 92 tcp_seq snd_max; /* highest sequence number sent; member in struct:tcpcb
tcp_input.c 493 tp->snd_nxt == tp->snd_max) {
506 SEQ_LEQ(ti->ti_ack, tp->snd_max) &&
534 if (tp->snd_una == tp->snd_max)
752 SEQ_GT(ti->ti_ack, tp->snd_max)))
1020 SEQ_GT(ti->ti_ack, tp->snd_max))
1064 * tp->snd_una < ti->ti_ack <= tp->snd_max
    [all...]
slirp.c 891 qemu_put_be32(f, tp->snd_max);
984 tp->snd_max = qemu_get_be32(f);
  /external/qemu/slirp-android/
tcp_output.c 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
    [all...]
tcp.h 165 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = (tp)->iss
tcp_var.h 97 tcp_seq snd_max; /* highest sequence number sent; member in struct:tcpcb
tcp_input.c 498 tp->snd_nxt == tp->snd_max) {
511 SEQ_LEQ(ti->ti_ack, tp->snd_max) &&
539 if (tp->snd_una == tp->snd_max)
758 SEQ_GT(ti->ti_ack, tp->snd_max)))
1026 SEQ_GT(ti->ti_ack, tp->snd_max))
1070 * tp->snd_una < ti->ti_ack <= tp->snd_max
    [all...]
slirp.c     [all...]

Completed in 3542 milliseconds