HomeSort by: relevance | last modified time | path
    Searched defs:oth (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/net/npf/
npf_sendpkt.c 98 struct tcphdr *oth, *th; local in function:npf_return_tcp
107 oth = npc->npc_l4.tcp;
109 if (oth->th_flags & TH_RST) {
168 th->th_sport = oth->th_dport;
169 th->th_dport = oth->th_sport;
171 if (oth->th_flags & TH_SYN) {
  /src/sys/net/
slcompress.c 179 struct tcphdr *oth; local in function:sl_compress_tcp
271 oth = (struct tcphdr *)&((int32_t *)&cs->cs_ip)[hlen];
281 th->th_off != oth->th_off ||
285 memcmp(th + 1, oth + 1, (th->th_off - 5) << 2)))
297 } else if (th->th_urp != oth->th_urp)
305 deltaS = (uint16_t)(ntohs(th->th_win) - ntohs(oth->th_win));
311 deltaA = ntohl(th->th_ack) - ntohl(oth->th_ack);
319 deltaS = ntohl(th->th_seq) - ntohl(oth->th_seq);

Completed in 11 milliseconds