HomeSort by: relevance | last modified time | path
    Searched refs:th_seq (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/netinet/
tcp_input.c 327 NTOHL(th->th_seq);
340 HTONL(th->th_seq);
487 pkt_seq = th->th_seq;
997 todrop = vp->rcv_nxt - th->th_seq;
1002 th->th_seq++;
1028 th->th_seq != vp->rcv_nxt) {
1042 // tcp_new_dsack(tp, th->th_seq, todrop);
1045 th->th_seq += todrop;
1063 todrop = (th->th_seq + tlen) - (vp->rcv_nxt + vp->rcv_wnd);
1070 * th->th_seq + tlen - vp->rcv_nxt - vp->rcv_wnd >= tle
    [all...]
tcp.h 51 tcp_seq th_seq; /* sequence number */ member in struct:tcphdr
tcp_syncache.c 576 SEQ_LEQ(th->th_seq, sc->sc_irs) ||
577 SEQ_GT(th->th_seq, sc->sc_irs + 1 + sc->sc_win)) {
813 if (SEQ_LT(th->th_seq, sc->sc_irs) ||
814 SEQ_GT(th->th_seq, sc->sc_irs+1)) {
838 if (ntohl(th->th_seq) != sc->sc_iss) {
968 sc->sc_irs = th->th_seq;
1165 th->th_seq = htonl(sc->sc_iss);
tcp_debug.c 172 seq = th->th_seq;
in_offload.c 92 tcpseq = ntohl(th->th_seq);
151 th->th_seq = htonl(tcpseq);
tcp_output.c 1357 th->th_seq = htonl(p->rxmit);
1362 th->th_seq = htonl(tp->snd_nxt);
1364 th->th_seq = htonl(tp->snd_max);
tcp_var.h 182 #define ti_seq ti_t.th_seq
tcp_subr.c 580 n->th_seq = 0;
768 th->th_seq = htonl(seq);
1445 seq = ntohl(th->th_seq);
  /src/sys/net/
slcompress.c 319 deltaS = ntohl(th->th_seq) - ntohl(oth->th_seq);
559 th->th_seq = htonl(ntohl(th->th_seq) + i);
564 th->th_seq = htonl(ntohl(th->th_seq) + ntohs(cs->cs_ip.ip_len)
579 DECODEL(th->th_seq)
  /src/usr.sbin/npf/npftest/
npfstream.c 66 seq = ntohl(th->th_seq);
  /src/sys/netinet6/
in6_offload.c 94 tcpseq = ntohl(th->th_seq);
148 th->th_seq = htonl(tcpseq);
  /src/usr.sbin/npf/npftest/libnpftest/
npf_state_test.c 126 th->th_seq = htonl(p->seq);
  /src/sys/external/bsd/ipf/netinet/
ip_rcmd_pxy.c 170 (tcp->th_seq != rc->rcmd_portseq))
196 rc->rcmd_portseq = tcp->th_seq;
ip_pptp_pxy.c 294 start = ntohl(tcp->th_seq);
528 pptp->pptp_side[rev].pptps_next = ntohl(tcp->th_seq) + 1;
529 pptp->pptp_side[rev].pptps_nexthdr = ntohl(tcp->th_seq) + 1;
ip_proxy.c 1167 seq1 = (u_32_t)ntohl(tcp->th_seq);
1185 tcp->th_seq = htonl(seq1);
1220 seq1 = ntohl(tcp->th_seq);
1237 tcp->th_seq = htonl(seq1);
1281 (u_32_t)ntohl(tcp->th_seq), (u_32_t)ntohl(tcp->th_ack));
ip_raudio_pxy.c 230 seq = ntohl(tcp->th_seq);
ip_state.c 1575 is->is_send = ntohl(tcp->th_seq) + fin->fin_dlen -
2036 is->is_s0[!source] = ntohl(tcp->th_seq) + 1;
2045 is->is_s0[source] = ntohl(tcp->th_seq) + 1;
2091 old = ntohl(tcp->th_seq);
2129 seq = ntohl(tcp->th_seq);
2330 send = ntohl(tcp->th_seq) + fin->fin_dlen - (TCP_OFF(tcp) << 2) +
2562 is->is_send = ntohl(tcp->th_seq);
2574 is->is_dend = ntohl(tcp->th_seq);
3417 seq = ntohl(tcp->th_seq);
3419 tcp->th_seq = htonl(seq)
    [all...]
ip_scan.c 549 seq = ntohl(tcp->th_seq);
ip_fil_netbsd.c 791 tcp2->th_seq = tcp->th_ack;
795 tcp2->th_seq = 0;
796 tcp2->th_ack = ntohl(tcp->th_seq);
  /src/sys/dev/pci/cxgb/
cxgb_lro.c 168 s->seq = ntohl(th->th_seq) + ip_len - sizeof(*ih) - (th->th_off << 2);
251 uint32_t seq = ntohl(nth->th_seq);
  /src/sys/net/npf/
npf_sendpkt.c 170 th->th_seq = htonl(ack);
npf_inet.c 257 *seq = ntohl(th->th_seq);
  /src/usr.sbin/trpt/
trpt.c 452 seq = th->th_seq;
  /src/sys/dist/pf/net/
pf.c 1775 th->th_seq = htonl(seq);
3441 u_int32_t ack = ntohl(th->th_seq) + pd->p_len;
3541 s->src.seqlo = ntohl(th->th_seq);
3549 pf_change_a(&th->th_seq, &th->th_sum,
3723 th->th_sport, s->src.seqhi, ntohl(th->th_seq) + 1,
3859 if (ntohl(th->th_seq) != (*state)->src.seqlo) {
3865 (*state)->src.seqhi, ntohl(th->th_seq) + 1,
3872 (ntohl(th->th_seq) != (*state)->src.seqlo + 1)) {
3895 (ntohl(th->th_seq) != (*state)->src.seqlo + 1)) {
3915 (*state)->dst.seqlo = ntohl(th->th_seq);
    [all...]
  /src/sys/kern/
uipc_mbufdebug.c 830 (*pr)("TCP: Seq. = %u\n", ntohl(tcp.th_seq));

Completed in 29 milliseconds

1 2