Searched refs:ip6f (Results 1 - 6 of 6) sorted by relevance

/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.inet_ntoa6.d36 struct in6_addr *ip6f;
53 ip6f = this->buf6f;
77 ip6f->__u6_addr.__u6_addr8[10] = 0xff;
78 ip6f->__u6_addr.__u6_addr8[11] = 0xff;
79 ip6f->__u6_addr.__u6_addr8[12] = 0x7f;
80 ip6f->__u6_addr.__u6_addr8[15] = 0x01;
91 printf("%s\n", inet_ntoa6(ip6f));
H A Dtst.inet_ntop.d43 struct in6_addr *ip6f;
70 ip6f = this->buf6f;
99 ip6f->__u6_addr.__u6_addr8[10] = 0xff;
100 ip6f->__u6_addr.__u6_addr8[11] = 0xff;
101 ip6f->__u6_addr.__u6_addr8[12] = 0x7f;
102 ip6f->__u6_addr.__u6_addr8[15] = 0x01;
133 printf("%s\n", inet_ntop(AF_INET6, ip6f));
/freebsd-11.0-release/sys/netinet6/
H A Dfrag6.c157 struct ip6_frag *ip6f; local
178 ip6f = (struct ip6_frag *)((caddr_t)ip6 + offset);
180 IP6_EXTHDR_GET(ip6f, struct ip6_frag *, m, offset, sizeof(*ip6f));
181 if (ip6f == NULL)
205 if ((ip6f->ip6f_offlg & IP6F_MORE_FRAG) &&
223 if ((ip6f->ip6f_offlg & ~IP6F_RESERVED_MASK) == 0) {
228 return (ip6f->ip6f_nxt);
244 if (ip6f->ip6f_ident == q6->ip6q_ident &&
290 q6->ip6q_ident = ip6f
[all...]
H A Din6_rss.c175 const struct ip6_frag *ip6f; local
234 ip6f = (const struct ip6_frag *)((c_caddr_t)ip6 + off);
235 if ((ip6f->ip6f_offlg & ~IP6F_RESERVED_MASK) == 0) {
H A Dip6_output.c226 struct ip6_frag *ip6f; local
248 error = ip6_insertfraghdr(m0, m, hlen, &ip6f);
253 ip6f->ip6f_offlg = htons((u_short)((off - hlen) & ~7));
257 ip6f->ip6f_offlg |= IP6F_MORE_FRAG;
259 sizeof(*ip6f) - sizeof(struct ip6_hdr)));
265 m->m_pkthdr.len = mtu + hlen + sizeof(*ip6f);
268 ip6f->ip6f_reserved = 0;
269 ip6f->ip6f_ident = id;
270 ip6f->ip6f_nxt = nextproto;
/freebsd-11.0-release/sys/netgraph/netflow/
H A Dng_netflow.c816 struct ip6_frag *ip6f; local
870 ip6f = (struct ip6_frag *)(mtod(m, caddr_t) +
872 upper_proto = ip6f->ip6f_nxt;

Completed in 113 milliseconds