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

12

/external/mdnsresponder/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
/external/android-clat/
H A Dgetaddr.h22 struct in6_addr ip6; member in union:anyip
H A Dipv6.c79 const struct ip6_hdr *ip6 = (struct ip6_hdr *) packet; local
89 logmsg_dbg(ANDROID_LOG_ERROR, "ipv6_packet/too short for an ip6 header: %d", len);
93 if(IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) {
94 log_bad_address("ipv6_packet/multicast %s->%s", &ip6->ip6_src, &ip6->ip6_dst);
104 if (!(is_in_plat_subnet(&ip6->ip6_src) &&
105 IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &Global_Clatd_Config.ipv6_local_subnet)) &&
106 !(is_in_plat_subnet(&ip6->ip6_dst) &&
107 IN6_ARE_ADDR_EQUAL(&ip6->ip6_src, &Global_Clatd_Config.ipv6_local_subnet)) &&
108 ip6
[all...]
H A Dchecksum.h23 #include <netinet/ip6.h>
29 uint32_t ipv6_pseudo_header_checksum(const struct ip6_hdr *ip6, uint16_t len, uint8_t protocol);
H A Dclatd_test.cpp89 #define IPV6_PSEUDOHEADER(ip6, protocol, tlen) \
90 ip6[8], ip6[9], ip6[10], ip6[11], /* Source address */ \
91 ip6[12], ip6[13], ip6[14], ip6[15], \
92 ip6[1
184 is_ipv6_fragment(struct ip6_hdr *ip6, size_t len) argument
225 struct ip6_hdr *ip6 = (struct ip6_hdr *) packet; local
289 struct ip6_hdr *ip6 = NULL; local
408 struct ip6_hdr *ip6 = (struct ip6_hdr *) packet; local
520 struct ip6_hdr *ip6; local
819 uint8_t ip6[] = { IPV6_UDP_HEADER }; local
931 struct ip6_hdr *ip6 = (struct ip6_hdr *) udp_ipv6; local
[all...]
H A Ddump.h31 void dump_udp6(const struct udphdr *udp, const struct ip6_hdr *ip6,
33 void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6,
H A Dchecksum.c23 #include <netinet/ip6.h>
86 * ip6 - the ipv6 header
88 * protocol - the transport layer protocol, can be different from ip6->ip6_nxt for fragments
90 uint32_t ipv6_pseudo_header_checksum(const struct ip6_hdr *ip6, uint16_t len, uint8_t protocol) { argument
96 current = ip_checksum_add(current, &(ip6->ip6_src), sizeof(struct in6_addr));
97 current = ip_checksum_add(current, &(ip6->ip6_dst), sizeof(struct in6_addr));
H A Dtranslate.c152 * ip6 - (ipv6) target packet header, source: local subnet prefix, dest: nat64 prefix
157 void fill_ip6_header(struct ip6_hdr *ip6, uint16_t payload_len, uint8_t protocol, argument
159 memset(ip6, 0, sizeof(struct ip6_hdr));
161 ip6->ip6_vfc = 6 << 4;
162 ip6->ip6_plen = htons(payload_len);
163 ip6->ip6_nxt = protocol;
164 ip6->ip6_hlim = old_header->ttl;
166 ip6->ip6_src = ipv4_addr_to_ipv6_addr(old_header->saddr);
167 ip6->ip6_dst = ipv4_addr_to_ipv6_addr(old_header->daddr);
H A Dtranslate.h26 #include <netinet/ip6.h>
48 void fill_ip6_header(struct ip6_hdr *ip6, uint16_t payload_len, uint8_t protocol,
H A Ddump.c28 #include <netinet/ip6.h>
72 /* print ip6 header */
157 void dump_udp6(const struct udphdr *udp, const struct ip6_hdr *ip6, argument
160 temp_checksum = ipv6_pseudo_header_checksum(ip6, sizeof(*udp) + payload_size, IPPROTO_UDP);
216 void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6, argument
221 temp_checksum = ipv6_pseudo_header_checksum(ip6, sizeof(*tcp) + options_size + payload_size, IPPROTO_TCP);
/external/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 UNALIGNED_MEMCPY(&ph.ph_src, &ip6->ip6_src, sizeof (struct in6_addr));
66 UNALIGNED_MEMCPY(&ph.ph_dst, &ip6->ip6_dst, sizeof (struct in6_addr));
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-tcp.c51 #include "ip6.h"
166 register const struct ip6_hdr *ip6; local
173 ip6 = (struct ip6_hdr *)bp2;
175 ip6 = NULL;
191 if (ip6) {
192 if (ip6->ip6_nxt == IPPROTO_TCP) {
194 ip6addr_string(&ip6->ip6_src),
196 ip6addr_string(&ip6->ip6_dst),
251 if (ip6) {
258 src = &ip6
797 struct ip6_hdr *ip6; local
[all...]
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);
H A Dprint-udp.c49 #include "ip6.h"
294 static int udp6_cksum(const struct ip6_hdr *ip6, const struct udphdr *up, argument
297 return (nextproto6_cksum(ip6, (const u_int8_t *)(void *)up, len,
306 const struct ip6_hdr *ip6; local
309 ip6 = (const struct ip6_hdr *)ip;
311 ip6 = NULL;
313 if (ip6) {
314 if (ip6->ip6_nxt == IPPROTO_UDP) {
317 ip6addr_string(&ip6->ip6_src),
318 ip6addr_string(&ip6
368 register const struct ip6_hdr *ip6; local
[all...]
H A Dprint-dccp.c31 #include "ip6.h"
81 static int dccp6_cksum(const struct ip6_hdr *ip6, const struct dccp_hdr *dh, u_int len) argument
83 return nextproto6_cksum(ip6, (const u_int8_t *)(void *)dh,
173 const struct ip6_hdr *ip6; local
185 ip6 = (const struct ip6_hdr *)data2;
187 ip6 = NULL;
206 if (ip6) {
208 ip6addr_string(&ip6->ip6_src), sport,
209 ip6addr_string(&ip6->ip6_dst), dport);
243 sum = dccp6_cksum(ip6, d
[all...]
H A Dprint-sctp.c59 #include "ip6.h"
92 const struct ip6_hdr *ip6; local
111 ip6 = (const struct ip6_hdr *)bp2;
113 ip6 = NULL;
131 if (ip6) {
133 ip6addr_string(&ip6->ip6_src),
135 ip6addr_string(&ip6->ip6_dst),
H A Dprint-pgm.c37 #include "ip6.h"
170 register const struct ip6_hdr *ip6; local
181 ip6 = (struct ip6_hdr *)bp2;
183 ip6 = NULL;
193 if (ip6) {
195 ip6addr_string(&ip6->ip6_src),
196 ip6addr_string(&ip6->ip6_dst));
212 if (ip6) {
213 if (ip6->ip6_nxt == IPPROTO_PGM) {
215 ip6addr_string(&ip6
[all...]
/external/iptables/extensions/
H A Dlibip6t_NETMAP.c45 range->min_addr.ip6[i] = cb->val.haddr.ip6[i] &
46 cb->val.hmask.ip6[i];
47 range->max_addr.ip6[i] = range->min_addr.ip6[i] |
48 ~cb->val.hmask.ip6[i];
63 a.s6_addr32[i] = ~(r->min_addr.ip6[i] ^ r->max_addr.ip6[i]);
H A Dlibxt_ipvs.c143 if (!numeric && addr->ip6[0] == 0 && addr->ip6[1] == 0 &&
144 addr->ip6[2] == 0 && addr->ip6[3] == 0) {
/external/iproute2/include/linux/
H A Dnetfilter.h64 __be32 ip6[4]; member in union:nf_inet_addr
/external/iptables/include/linux/
H A Dnetfilter.h64 __be32 ip6[4]; member in union:nf_inet_addr
/external/kernel-headers/original/uapi/linux/
H A Dnetfilter.h68 __be32 ip6[4]; member in union:nf_inet_addr
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1-11.cpp29 IP<(float*)0> ip6; // expected-error{{null non-type template argument of type 'float *' does not match template parameter of type 'int *'}} variable
/external/iproute2/doc/
H A DMakefile1 PSFILES=ip-cref.ps ip-tunnels.ps api-ip6-flowlabels.ps ss.ps nstat.ps arpd.ps rtstat.ps

Completed in 520 milliseconds

12