HomeSort by: relevance | last modified time | path
    Searched refs:ip6f_offlg (Results 1 - 11 of 11) sorted by relevancy

  /src/external/bsd/tcpdump/dist/
print-frag6.c 54 ND_PRINT("%u|", GET_BE_U_2(dp->ip6f_offlg) & IP6F_OFF_MASK);
64 if ((GET_BE_U_2(dp->ip6f_offlg) & IP6F_OFF_MASK) != 0)
ip6.h 200 nd_uint16_t ip6f_offlg; /* offset, reserved, and flag */ member in struct:ip6_frag
204 #define IP6F_OFF_MASK 0xfff8 /* mask out offset from ip6f_offlg */
205 #define IP6F_RESERVED_MASK 0x0006 /* reserved bits in ip6f_offlg */
print-icmp6.c 1384 if (!ND_TTEST_2(fragh->ip6f_offlg))
1387 if ((GET_BE_U_2(fragh->ip6f_offlg) & IP6F_OFF_MASK) != 0)
  /src/sys/netinet6/
frag6.c 212 ((ip6f->ip6f_offlg & IP6F_MORE_FRAG) && (frgpartlen & 0x7) != 0)) {
235 fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK);
236 if (fragoff == 0 && !(ip6f->ip6f_offlg & IP6F_MORE_FRAG)) {
324 offsetof(struct ip6_frag, ip6f_offlg));
331 offsetof(struct ip6_frag, ip6f_offlg));
371 offsetof(struct ip6_frag, ip6f_offlg));
384 ip6af->ip6af_mff = (ip6f->ip6f_offlg & IP6F_MORE_FRAG) != 0;
ip6_output.c 978 ip6f->ip6f_offlg = htons((u_int16_t)((off - hlen) & ~7));
982 ip6f->ip6f_offlg |= IP6F_MORE_FRAG;
ip6_input.c 1432 if ((fh.ip6f_offlg & IP6F_OFF_MASK) != 0)
icmp6.c 1037 if (fh->ip6f_offlg & IP6F_OFF_MASK)
  /src/sys/netinet/
ip6.h 250 u_int16_t ip6f_offlg; /* offset, reserved, and flag */ member in struct:ip6_frag
256 #define IP6F_RESERVED_MASK 0x0006 /* reserved bits in ip6f_offlg */
260 #define IP6F_RESERVED_MASK 0x0600 /* reserved bits in ip6f_offlg */
  /src/sys/net/npf/
npf_inet.c 514 if (!ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK) &&
515 !(ip6f->ip6f_offlg & IP6F_MORE_FRAG)) {
  /src/sys/dist/pf/net/
pf_norm.c 1246 fragoff = ntohs(frag.ip6f_offlg & IP6F_OFF_MASK);
  /src/sys/external/bsd/ipf/netinet/
fil.c 836 if ((frag->ip6f_offlg & IP6F_MORE_FRAG) != 0) {
849 fin->fin_off = ntohs(frag->ip6f_offlg & IP6F_OFF_MASK);

Completed in 60 milliseconds