Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:seq

85 	tcp_seq seq;
200 u_int32_t seq, ack, thseq, thack;
282 seq = EXTRACT_32BITS(&tp->th_seq);
401 th->ack = seq, th->seq = ack - 1;
403 th->seq = seq, th->ack = ack - 1;
406 seq -= th->ack, ack -= th->seq;
408 seq -= th->seq, ack -= th->ack;
411 thseq = th->seq;
454 (void)printf(" %u:%u(%u)", seq, seq + length, length);