Searched refs:ip6 (Results 1 - 25 of 146) sorted by relevance

123456

/macosx-10.9.5/mDNSResponder-522.92.1/mDNSPosix/
H A Dnss_mdns.conf6 domain 8.e.f.ip6.int
7 domain 9.e.f.ip6.int
8 domain a.e.f.ip6.int
9 domain b.e.f.ip6.int
10 domain 8.e.f.ip6.arpa
11 domain 9.e.f.ip6.arpa
12 domain a.e.f.ip6.arpa
13 domain b.e.f.ip6.arpa
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dip.d87 translator ipinfo_t < struct ip6_hdr *ip6 > {
88 ip_ver = (ip6 != NULL) ? (ip6->ip6_ctlun.ip6_un2_vfc & 0xf0) >> 4 : 0;
89 ip_plength = (ip6 != NULL) ? (ntohs(ip6->ip6_ctlun.ip6_un1.ip6_un1_plen)) : 0;
90 ip_saddr = (ip6 != NULL) ? inet_ntoa6(&ip6->ip6_src) : "<null>";
91 ip_daddr = (ip6 != NULL) ? inet_ntoa6(&ip6->ip6_dst) : "<null>";
202 translator ipv6info_t < struct ip6_hdr *ip6 > {
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Din6_cksum.c128 #include <netinet/ip6.h>
195 struct ip6_hdr *ip6; local
196 unsigned char buf[sizeof (*ip6)] __attribute__((aligned(8)));
206 if ((mlen = m_length2(m, NULL)) < sizeof (*ip6)) {
217 if ((sizeof (*ip6) > m->m_len) ||
219 m_copydata(m, 0, sizeof (*ip6), (caddr_t)buf);
220 ip6 = (struct ip6_hdr *)(void *)buf;
222 ip6 = (struct ip6_hdr *)(void *)(m->m_data);
226 sum += in6_pseudo(&ip6->ip6_src, &ip6
[all...]
H A Din6_gif.c84 #include <netinet/ip6.h>
111 struct ip6_hdr *ip6; local
145 if (mbuf_len(m) < sizeof (*ip6)) {
146 m = m_pullup(m, sizeof (*ip6));
150 ip6 = mtod(m, struct ip6_hdr *);
151 itos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
173 ip6 = mtod(m, struct ip6_hdr *);
174 ip6->ip6_flow = 0;
175 ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
176 ip6
245 struct ip6_hdr *ip6; local
318 gif_validate6( const struct ip6_hdr *ip6, struct gif_softc *sc, struct ifnet *ifp) argument
383 struct ip6_hdr ip6; local
[all...]
H A Droute6.c71 #include <netinet/ip6.h>
80 struct ip6_hdr *ip6; local
104 ip6 = mtod(m, struct ip6_hdr *);
105 rh = (struct ip6_rthdr *)((caddr_t)ip6 + off);
110 ip6 = mtod(m, struct ip6_hdr *);
127 (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
H A Dip6_forward.c83 #include <netinet/ip6.h>
125 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
207 IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst) ||
208 IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_src)) {
216 ip6_sprintf(&ip6->ip6_src),
217 ip6_sprintf(&ip6->ip6_dst),
218 ip6->ip6_nxt,
225 if (ip6->ip6_hlim <= IPV6_HLIMDEC) {
239 VERIFY(!IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst));
240 proxy = nd6_prproxy_isours(m, ip6, ip6forward_r
[all...]
H A Dip6_input.c132 #include <netinet/ip6.h>
295 PE_parse_boot_argn("net.inet6.ip6.scopedroute", &ip6_doscopedroute,
325 ip6_mutex_grp = lck_grp_alloc_init("ip6", ip6_mutex_grp_attr);
449 struct ip6_hdr *ip6; local
513 ip6 = mtod(m, struct ip6_hdr *); /* In case PF got disabled */
524 ip6 = mtod(m, struct ip6_hdr *);
525 nxt = ip6->ip6_nxt;
604 ip6 = mtod(m, struct ip6_hdr *);
606 if ((ip6->ip6_vfc & IPV6_VERSION_MASK) != IPV6_VERSION) {
612 ip6stat.ip6s_nxthist[ip6
1372 struct ip6_hdr *ip6; local
1505 struct ip6_hdr *ip6; local
1556 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
1628 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
1952 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
1991 struct ip6_hdr ip6; local
[all...]
H A Dudp6_usrreq.c125 #include <netinet/ip6.h>
199 udp6_append(struct inpcb *last, struct ip6_hdr *ip6, argument
202 #pragma unused(ip6)
243 struct ip6_hdr *ip6; local
260 ip6 = mtod(m, struct ip6_hdr *);
266 plen = ntohs(ip6->ip6_plen) - off + sizeof (*ip6);
267 uh = (struct udphdr *)(void *)((caddr_t)ip6 + off);
294 if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
377 if (imo && IN6_IS_ADDR_MULTICAST(&ip6
581 struct ip6_hdr *ip6; local
911 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
[all...]
H A Dip6_mroute.c104 #include <netinet/ip6.h>
965 * pointed to by "ip6" has arrived on (or is about to be sent to) the interface
975 ip6_mforward(ip6, ifp, m)
976 struct ip6_hdr *ip6;
989 ip6_sprintf(&ip6->ip6_src), ip6_sprintf(&ip6->ip6_dst),
997 if (ip6->ip6_hlim <= 1 || IN6_IS_ADDR_MC_NODELOCAL(&ip6->ip6_dst) ||
998 IN6_IS_ADDR_MC_LINKLOCAL(&ip6->ip6_dst))
1000 ip6
1291 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
1683 struct ip6_hdr *ip6; local
[all...]
H A Dudp6_output.c125 #include <netinet/ip6.h>
151 struct ip6_hdr *ip6; local
327 ip6 = mtod(m, struct ip6_hdr *);
328 ip6->ip6_flow = in6p->inp_flow & IPV6_FLOWINFO_MASK;
329 ip6->ip6_vfc &= ~IPV6_VERSION_MASK;
330 ip6->ip6_vfc |= IPV6_VERSION;
332 ip6->ip6_plen = htons((u_short)plen);
334 ip6->ip6_nxt = IPPROTO_UDP;
335 ip6->ip6_hlim = in6_selecthlim(in6p, in6p->in6p_route.ro_rt ?
337 ip6
[all...]
H A Dip6_fw.c110 #include <netinet/ip6.h>
186 static int ip6opts_match __P((struct ip6_hdr **ip6, struct ip6_fw *f,
193 static void ip6fw_report __P((struct ip6_fw *f, struct ip6_hdr *ip6,
276 is_icmp6_query(struct ip6_hdr *ip6, int off) argument
281 icmp6 = (struct icmp6_hdr *)((caddr_t)ip6 + off);
299 struct ip6_hdr *ip6 = *pip6; local
306 *nxt = ip6->ip6_nxt;
308 len = ntohs(ip6->ip6_plen) + sizeof(struct ip6_hdr);
310 ip6e = (struct ip6_ext *)((caddr_t) ip6 + *off);
319 ip6f = (struct ip6_frag *) ((caddr_t)ip6
417 ip6fw_report(struct ip6_fw *f, struct ip6_hdr *ip6, struct ifnet *rif, struct ifnet *oif, int off, int nxt) argument
563 struct ip6_hdr *ip6 = *pip6; local
840 struct ip6_hdr ip6; member in struct:__anon14744
[all...]
H A Dfrag6.c82 #include <netinet/ip6.h>
125 static struct ip6q ip6q; /* ip6 reassembly queues */
280 struct ip6_hdr *ip6; local
300 ip6 = mtod(m, struct ip6_hdr *);
303 ip6f = (struct ip6_frag *)((caddr_t)ip6 + offset);
330 if (ip6->ip6_plen == 0) {
344 (((ntohs(ip6->ip6_plen) - offset) & 0x7) != 0)) {
373 offset == (sizeof (*ip6) + sizeof (*ip6f)) &&
385 if (IN6_IS_SCOPE_EMBED(&ip6->ip6_src)) {
386 s = ip6
861 struct ip6_hdr *ip6; local
[all...]
H A Desp_input.c96 #include <netinet/ip6.h>
164 struct ip6_hdr *ip6; local
522 if (m->m_len < sizeof(*ip6)) {
523 m = m_pullup(m, sizeof(*ip6));
536 ip6 = mtod(m, struct ip6_hdr *);
543 (caddr_t)&ip6->ip6_src, (caddr_t)&ip6->ip6_dst)) {
546 ipsec6_logpacketstr(ip6, spi), ipsec_logsastr(sav)));
556 ip6addr->sin6_addr = ip6->ip6_dst;
728 struct ip6_hdr *ip6; local
1200 struct ip6_hdr *ip6; local
[all...]
H A Dah_input.c95 #include <netinet/ip6.h>
627 struct ip6_hdr *ip6; local
653 ip6 = mtod(m, struct ip6_hdr *);
659 if (ntohs(ip6->ip6_plen) == 0) {
667 (caddr_t)&ip6->ip6_src, (caddr_t)&ip6->ip6_dst,
715 ipsec6_logpacketstr(ip6, spi)));
723 ipsec6_logpacketstr(ip6, spi)));
752 ipsec6_logpacketstr(ip6, spi),
791 ipsec6_logpacketstr(ip6, sp
1037 struct ip6_hdr *ip6; local
[all...]
H A Dnd6_nbr.c87 #include <netinet/ip6.h>
252 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
254 struct in6_addr saddr6 = ip6->ip6_src;
255 struct in6_addr daddr6 = ip6->ip6_dst;
278 nd_ns = (struct nd_neighbor_solicit *)((caddr_t)ip6 + off);
288 ip6 = mtod(m, struct ip6_hdr *); /* adjust pointer for safety */
293 if (ip6->ip6_hlim != IPV6_MAXHLIM) {
296 ip6->ip6_hlim, ip6_sprintf(&ip6->ip6_src),
297 ip6_sprintf(&ip6
560 struct ip6_hdr *ip6; local
844 struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr *); local
1236 struct ip6_hdr *ip6; local
[all...]
/macosx-10.9.5/tcpdump-56/tcpdump/
H A Dprint-ip6.c24 "@(#) $Header: /tcpdump/master/tcpdump/print-ip6.c,v 1.52 2007-09-21 07:05:33 hannes Exp $";
44 #include "ip6.h"
51 nextproto6_cksum(const struct ip6_hdr *ip6, const u_int8_t *data, argument
65 ph.ph_src = ip6->ip6_src;
66 ph.ph_dst = ip6->ip6_dst;
84 register const struct ip6_hdr *ip6; local
94 ip6 = (const struct ip6_hdr *)bp;
96 TCHECK(*ip6);
98 (void)ND_PRINT((ndo, "truncated-ip6 %u", length));
105 payload_len = EXTRACT_16BITS(&ip6
[all...]
H A Dprint-frag6.c37 #include "ip6.h"
47 register const struct ip6_hdr *ip6; local
50 ip6 = (const struct ip6_hdr *)bp2;
58 sizeof(struct ip6_hdr) + EXTRACT_16BITS(&ip6->ip6_plen) -
63 sizeof(struct ip6_hdr) + EXTRACT_16BITS(&ip6->ip6_plen) -
H A Dprint-sunrpc.c64 #include "ip6.h"
91 register const struct ip6_hdr *ip6; local
117 ip6 = (struct ip6_hdr *)bp2;
119 ip6addr_string(&ip6->ip6_src), srcid,
120 ip6addr_string(&ip6->ip6_dst), dstid, length);
/macosx-10.9.5/sudo-72/src/
H A Dinterfaces.h31 struct in6_addr ip6; member in union:sudo_in_addr_un
H A Dmatch.c640 if (inet_pton(AF_INET6, n, &addr.ip6) > 0) {
662 if (memcmp(ifp->addr.ip6.s6_addr, addr.ip6.s6_addr,
663 sizeof(addr.ip6.s6_addr)) == 0)
665 for (j = 0; j < sizeof(addr.ip6.s6_addr); j++) {
666 if ((ifp->addr.ip6.s6_addr[j] & ifp->netmask.ip6.s6_addr[j]) != addr.ip6.s6_addr[j])
669 if (j == sizeof(addr.ip6.s6_addr))
693 if (inet_pton(AF_INET6, n, &addr.ip6) >
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/net/classq/
H A Dclassq_util.c78 #include <netinet/ip6.h>
123 struct ip6_hdr *ip6 = (struct ip6_hdr *)(void *)t->pftag_hdr; local
126 if (((uintptr_t)ip6 + sizeof (*ip6)) >
130 flowlabel = ntohl(ip6->ip6_flow);
188 struct ip6_hdr *ip6 = (struct ip6_hdr *)t->pftag_hdr; local
191 if (((uintptr_t)ip6 + sizeof (*ip6)) >
195 flowlabel = ntohl(ip6->ip6_flow);
199 ip6
276 struct ip6_hdr *ip6 = hdr; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/lwresd/
H A Dtests.sh29 ip6.int ip6.arpa
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Dtcp_debug.h82 struct ip6_hdr ip6; member in struct:tcp_debug::__anon14737
H A Din_gif.c85 #include <netinet/ip6.h>
149 struct ip6_hdr *ip6; local
151 if (mbuf_len(m) < sizeof (*ip6)) {
152 m = m_pullup(m, sizeof (*ip6));
156 ip6 = mtod(m, struct ip6_hdr *);
157 tos = (ntohl(ip6->ip6_flow) >> 20) & 0xff;
284 struct ip6_hdr *ip6; local
287 if (mbuf_len(m) < sizeof (*ip6)) {
288 m = m_pullup(m, sizeof (*ip6));
292 ip6
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/v6synth/
H A Dtests.sh39 $DIG $DIGOPTS f.f.$i.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.5.4.3.2.1.ip6.int. PTR @10.53.0.3 -p 5300
62 f.f.1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.5.4.3.2.1.ip6.int. 0 IN PTR foo.
64 f.f.2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6.5.4.3.2.1.ip6.int. 0 IN PTR bar.

Completed in 140 milliseconds

123456