Home | History | Annotate | Download | only in netinet6

Lines Matching defs:copym

3239 	struct mbuf *copym;
3242 copym = m_copypacket(m, M_DONTWAIT);
3243 if (copym == NULL)
3251 if ((copym->m_flags & M_EXT) != 0 ||
3252 copym->m_len < sizeof(struct ip6_hdr)) {
3253 copym = m_pullup(copym, sizeof(struct ip6_hdr));
3254 if (copym == NULL)
3259 if (copym->m_len < sizeof(*ip6)) {
3260 m_freem(copym);
3265 ip6 = mtod(copym, struct ip6_hdr *);
3273 (void)looutput(ifp, copym, (const struct sockaddr *)dst, NULL);