Lines Matching refs:hbh
1166 struct ip6_hbh *hbh; in ip6_input() local
1203 hbh = (struct ip6_hbh *)(ip6 + 1); in ip6_input()
1204 nxt = hbh->ip6h_nxt; in ip6_input()
1551 struct ip6_hbh *hbh; in ip6_hopopts_input() local
1555 IP6_EXTHDR_CHECK(m, off, sizeof(*hbh), return (-1)); in ip6_hopopts_input()
1556 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off); in ip6_hopopts_input()
1557 hbhlen = (hbh->ip6h_len + 1) << 3; in ip6_hopopts_input()
1560 hbh = (struct ip6_hbh *)(mtod(m, caddr_t) + off); in ip6_hopopts_input()
1563 opt = (u_int8_t *)hbh + sizeof(struct ip6_hbh); in ip6_hopopts_input()
1565 if (ip6_process_hopopts(m, (u_int8_t *)hbh + sizeof(struct ip6_hbh), in ip6_hopopts_input()
1950 struct ip6_hbh *hbh; in ip6_savecontrol() local
1952 hbh = (struct ip6_hbh *)(ip6 + 1); in ip6_savecontrol()
1953 hbhlen = (hbh->ip6h_len + 1) << 3; in ip6_savecontrol()
1962 mp = sbcreatecontrol_mbuf((caddr_t)hbh, hbhlen, in ip6_savecontrol()