Searched refs:hbh (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/sys/netinet6/
H A Dip6_input.c410 struct ip6_hbh *hbh; local
444 hbh = (struct ip6_hbh *)(ip6 + 1);
446 IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr),
448 if (hbh == NULL) {
453 *nxt = hbh->ip6h_nxt;
985 struct ip6_hbh *hbh; local
989 IP6_EXTHDR_CHECK(m, off, sizeof(*hbh), -1);
990 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off);
991 hbhlen = (hbh->ip6h_len + 1) << 3;
994 hbh
1381 struct ip6_hbh *hbh; local
[all...]
H A Dip6_output.c502 * IPv6 hbh dest1 rthdr ah* [esp* dest2 payload].
529 * Result: IPv6 hbh dest1 rthdr dest2 payload.
823 struct ip6_hbh *hbh = mtod(exthdrs.ip6e_hbh, struct ip6_hbh *); local
828 if ((hbh->ip6h_len + 1) << 3 > exthdrs.ip6e_hbh->m_len)
839 if (ip6_process_hopopts(m, (u_int8_t *)(hbh + 1),
840 ((hbh->ip6h_len + 1) << 3) - sizeof(struct ip6_hbh),
1177 struct ip6_hbh *hbh; local
1191 * XXX: give up if the whole (new) hbh header does
1221 hbh = mtod(mopt, struct ip6_hbh *);
1222 hbh
2831 struct ip6_hbh *hbh; local
[all...]
H A Dmld6.c253 struct ip6_hbh hbh; member in struct:mld_raopt
262 .hbh = { 0, 0 },
3261 mld_po.ip6po_hbh = &mld_ra.hbh;
/freebsd-11-stable/sys/netpfil/ipfw/pmod/
H A Dtcpmod.c123 struct ip6_hbh *hbh; local
138 hbh = mtodo(*mp, hlen);
139 proto = hbh->ip6h_nxt;
140 hlen += (hbh->ip6h_len + 1) << 3;
/freebsd-11-stable/sys/netpfil/ipfw/nptv6/
H A Dnptv6.c113 struct ip6_hbh *hbh; local
124 hbh = mtodo(m, hlen);
127 proto = hbh->ip6h_nxt;
128 hlen += (hbh->ip6h_len + 1) << 3;
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-icmp6.c1174 const struct ip6_hbh *hbh; local
1207 hbh = (const struct ip6_hbh *)bp;
1208 if (!ND_TTEST(hbh->ip6h_len))
1210 nh = hbh->ip6h_nxt;
1211 hlen = (hbh->ip6h_len + 1) << 3;
/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64_translate.c1130 struct ip6_hbh *hbh; local
1147 hbh = mtodo(m, hlen);
1160 proto = hbh->ip6h_nxt;
1161 hlen += (hbh->ip6h_len + 1) << 3;

Completed in 100 milliseconds