Lines Matching refs:hbh
1197 struct ip6_hbh *__single hbh; in ip6_input() local
1234 hbh = (struct ip6_hbh *)(ip6 + 1); in ip6_input()
1235 nxt = hbh->ip6h_nxt; in ip6_input()
1597 struct ip6_hbh *hbh; in ip6_hopopts_input() local
1601 IP6_EXTHDR_CHECK(m, off, sizeof(*hbh), return (-1)); in ip6_hopopts_input()
1602 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off); in ip6_hopopts_input()
1603 hbhlen = (hbh->ip6h_len + 1) << 3; in ip6_hopopts_input()
1606 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off); in ip6_hopopts_input()
1609 opt = (u_int8_t *)hbh + sizeof(struct ip6_hbh); in ip6_hopopts_input()
1611 if (ip6_process_hopopts(m, (u_int8_t *)hbh + sizeof(struct ip6_hbh), in ip6_hopopts_input()
2016 struct ip6_hbh *hbh; in ip6_savecontrol() local
2018 hbh = (struct ip6_hbh *)(ip6 + 1); in ip6_savecontrol()
2019 hbhlen = (hbh->ip6h_len + 1) << 3; in ip6_savecontrol()
2028 mp = sbcreatecontrol_mbuf((caddr_t)hbh, hbhlen, in ip6_savecontrol()