Lines Matching refs:hbh
1186 struct ip6_hbh *__single hbh; in ip6_input() local
1223 hbh = (struct ip6_hbh *)(ip6 + 1); in ip6_input()
1224 nxt = hbh->ip6h_nxt; in ip6_input()
1579 struct ip6_hbh *hbh; in ip6_hopopts_input() local
1583 IP6_EXTHDR_CHECK(m, off, sizeof(*hbh), return (-1)); in ip6_hopopts_input()
1584 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off); in ip6_hopopts_input()
1585 hbhlen = (hbh->ip6h_len + 1) << 3; in ip6_hopopts_input()
1588 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off); in ip6_hopopts_input()
1591 opt = (u_int8_t *)hbh + sizeof(struct ip6_hbh); in ip6_hopopts_input()
1593 if (ip6_process_hopopts(m, (u_int8_t *)hbh + sizeof(struct ip6_hbh), in ip6_hopopts_input()
1983 struct ip6_hbh *hbh; in ip6_savecontrol() local
1985 hbh = (struct ip6_hbh *)(ip6 + 1); in ip6_savecontrol()
1986 hbhlen = (hbh->ip6h_len + 1) << 3; in ip6_savecontrol()
1995 mp = sbcreatecontrol_mbuf((caddr_t)hbh, hbhlen, in ip6_savecontrol()