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

123

/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,
/external/tcpdump/
H A Dprint-ip6.c37 #include "ip6.h"
44 nextproto6_cksum(const struct ip6_hdr *ip6, const uint8_t *data, argument
58 UNALIGNED_MEMCPY(&ph.ph_src, &ip6->ip6_src, sizeof (struct in6_addr));
59 UNALIGNED_MEMCPY(&ph.ph_dst, &ip6->ip6_dst, sizeof (struct in6_addr));
77 register const struct ip6_hdr *ip6; local
87 ip6 = (const struct ip6_hdr *)bp;
89 ND_TCHECK(*ip6);
91 ND_PRINT((ndo, "truncated-ip6 %u", length));
98 if (IP6_VERSION(ip6) != 6) {
99 ND_PRINT((ndo,"version error: %u != 6", IP6_VERSION(ip6)));
[all...]
H A Dprint-frag6.c31 #include "ip6.h"
39 register const struct ip6_hdr *ip6; local
42 ip6 = (const struct ip6_hdr *)bp2;
50 sizeof(struct ip6_hdr) + EXTRACT_16BITS(&ip6->ip6_plen) -
55 sizeof(struct ip6_hdr) + EXTRACT_16BITS(&ip6->ip6_plen) -
H A Dprint-sunrpc.c60 #include "ip6.h"
175 register const struct ip6_hdr *ip6; local
201 ip6 = (struct ip6_hdr *)bp2;
203 ip6addr_string(ndo, &ip6->ip6_src), srcid,
204 ip6addr_string(ndo, &ip6->ip6_dst), dstid, length));
H A Dprint-rt6.c33 #include "ip6.h"
95 struct ip6_hdr *ip6 = (struct ip6_hdr *)bp2; local
96 UNALIGNED_MEMCPY(&ip6->ip6_dst, last_addr, sizeof (struct in6_addr));
H A Dprint-tcp.c49 #include "ip6.h"
168 register const struct ip6_hdr *ip6; local
175 ip6 = (struct ip6_hdr *)bp2;
177 ip6 = NULL;
193 if (ip6) {
194 if (ip6->ip6_nxt == IPPROTO_TCP) {
196 ip6addr_string(ndo, &ip6->ip6_src),
198 ip6addr_string(ndo, &ip6->ip6_dst),
253 if (ip6) {
260 src = &ip6
813 struct ip6_hdr *ip6; local
[all...]
H A Dprint-dccp.c25 #include "ip6.h"
209 static int dccp6_cksum(const struct ip6_hdr *ip6, const struct dccp_hdr *dh, u_int len) argument
211 return nextproto6_cksum(ip6, (const uint8_t *)(void *)dh, len,
276 const struct ip6_hdr *ip6; local
289 ip6 = (const struct ip6_hdr *)data2;
291 ip6 = NULL;
320 if (ip6) {
322 ip6addr_string(ndo, &ip6->ip6_src), sport,
323 ip6addr_string(ndo, &ip6->ip6_dst), dport));
358 sum = dccp6_cksum(ip6, d
[all...]
H A Dprint-udp.c38 #include "ip6.h"
283 static int udp6_cksum(const struct ip6_hdr *ip6, const struct udphdr *up, argument
286 return nextproto6_cksum(ip6, (const uint8_t *)(void *)up, len, len,
295 const struct ip6_hdr *ip6; local
298 ip6 = (const struct ip6_hdr *)ip;
300 ip6 = NULL;
302 if (ip6) {
303 if (ip6->ip6_nxt == IPPROTO_UDP) {
306 ip6addr_string(ndo, &ip6->ip6_src),
307 ip6addr_string(ndo, &ip6
357 register const struct ip6_hdr *ip6; local
[all...]
H A Dprint-pgm.c29 #include "ip6.h"
159 register const struct ip6_hdr *ip6; local
170 ip6 = (struct ip6_hdr *)bp2;
172 ip6 = NULL;
182 if (ip6) {
184 ip6addr_string(ndo, &ip6->ip6_src),
185 ip6addr_string(ndo, &ip6->ip6_dst)));
201 if (ip6) {
202 if (ip6->ip6_nxt == IPPROTO_PGM) {
204 ip6addr_string(ndo, &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/webrtc/webrtc/base/
H A Dipaddress.h61 explicit IPAddress(const in6_addr& ip6) : family_(AF_INET6) { argument
62 u_.ip6 = ip6;
119 in6_addr ip6; member in union:rtc::IPAddress::__anon21247
135 InterfaceAddress(const in6_addr& ip6, int ipv6_flags) argument
136 : IPAddress(ip6), ipv6_flags_(ipv6_flags) {}
H A Dipaddress.cc80 return memcmp(&u_.ip6, &other.u_.ip6, sizeof(u_.ip6)) == 0;
111 return memcmp(&u_.ip6.s6_addr, &other.u_.ip6.s6_addr, 16) < 0;
124 return u_.ip6;
138 src = &u_.ip6;
185 in_addr addr = ExtractMappedAddress(u_.ip6);
/external/iproute2/include/linux/
H A Dnetfilter.h73 __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.h75 __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

Completed in 312 milliseconds

123