Home
last modified time | relevance | path

Searched refs:mldh (Results 1 – 2 of 2) sorted by relevance

/netbsd/sys/netinet6/
H A Dmld6.c349 struct mld_hdr *mldh; in mld_input() local
359 IP6_EXTHDR_GET(mldh, struct mld_hdr *, m, off, sizeof(*mldh)); in mld_input()
360 if (mldh == NULL) { in mld_input()
402 mld_addr = mldh->mld_addr; in mld_input()
420 switch (mldh->mld_type) { in mld_input()
550 struct mld_hdr *mldh; in mld_sendpkt() local
581 if (mldh == NULL) { in mld_sendpkt()
594 mldh->mld_addr = in6m->in6m_addr; in mld_sendpkt()
638 struct mld_hdr *mldh; in mld_allocbuf() local
678 mldh->mld_type = type; in mld_allocbuf()
[all …]
/netbsd/usr.sbin/mld6query/
H A Dmld6.c59 static struct mld6_hdr mldh; variable
182 iov[0].iov_base = (caddr_t)&mldh; in make_msg()
183 iov[0].iov_len = sizeof(mldh); in make_msg()
187 bzero(&mldh, sizeof(mldh)); in make_msg()
188 mldh.mld6_type = type & 0xff; in make_msg()
189 mldh.mld6_maxdelay = htons(QUERY_RESPONSE_INTERVAL); in make_msg()
190 mldh.mld6_addr = *addr; in make_msg()