HomeSort by: relevance | last modified time | path
    Searched defs:hbh (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/netinet6/
mld6.c 167 struct ip6_hbh *hbh = (struct ip6_hbh *)hbh_buf; local in function:mld_init
171 hbh->ip6h_len = 0; /* (8 >> 3) - 1 */
180 ip6_opts.ip6po_hbh = hbh;
ip6_input.c 563 struct ip6_hbh *hbh; local in function:ip6_input
597 IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr),
599 if (hbh == NULL) {
605 KASSERT(ACCESSIBLE_POINTER(hbh, struct ip6_hdr));
606 nxt = hbh->ip6h_nxt;
862 struct ip6_hbh *hbh; local in function:ip6_hopopts_input
865 IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m,
867 if (hbh == NULL) {
871 hbhlen = (hbh->ip6h_len + 1) << 3;
872 IP6_EXTHDR_GET(hbh, struct ip6_hbh *, m, sizeof(struct ip6_hdr)
1139 struct ip6_hbh *hbh; local in function:ip6_savecontrol
    [all...]
ip6_output.c 365 * IPv6 hbh dest1 rthdr ah* [esp* dest2 payload]
405 * result: IPv6 hbh dest1 rthdr dest2 payload
1125 struct ip6_hbh *hbh; local in function:ip6_insert_jumboopt
1141 * Give up if the whole (new) hbh header does not fit
1178 hbh = mtod(mopt, struct ip6_hbh *);
1179 hbh->ip6h_len += (JUMBOOPTLEN >> 3);
1362 * receiving ANY hbh/dst options in order to avoid
3036 struct ip6_hbh *hbh; local in function:ip6_setpktopt
3040 * XXX: We don't allow a non-privileged user to set ANY HbH
3058 hbh = (struct ip6_hbh *)buf
    [all...]
  /src/sys/kern/
uipc_mbufdebug.c 671 struct ip6_hbh hbh; local in function:m_examine_ip6
703 if (m_peek_data(m, off, sizeof(hbh), (void *)(&hbh)) < 0) {
707 hbhlen = (hbh.ip6h_len + 1) << 3;
708 nxt = hbh.ip6h_nxt;

Completed in 15 milliseconds