/external/mdnsresponder/mDNSPosix/ |
nss_mdns.conf | 6 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/ |
getaddr.h | 22 struct in6_addr ip6; member in union:anyip
|
ipv6.c | 78 const struct ip6_hdr *ip6 = (struct ip6_hdr *) packet; local 88 logmsg_dbg(ANDROID_LOG_ERROR, "ipv6_packet/too short for an ip6 header: %d", len); 92 if(IN6_IS_ADDR_MULTICAST(&ip6->ip6_dst)) { 93 log_bad_address("ipv6_packet/multicast %s->%s", &ip6->ip6_src, &ip6->ip6_dst); 103 if (!(is_in_plat_subnet(&ip6->ip6_src) && 104 IN6_ARE_ADDR_EQUAL(&ip6->ip6_dst, &Global_Clatd_Config.ipv6_local_subnet)) && 105 !(is_in_plat_subnet(&ip6->ip6_dst) && 106 IN6_ARE_ADDR_EQUAL(&ip6->ip6_src, &Global_Clatd_Config.ipv6_local_subnet)) && 107 ip6->ip6_nxt != IPPROTO_ICMPV6) [all...] |
dump.h | 28 void dump_udp6(const struct udphdr *udp, const struct ip6_hdr *ip6, const char *payload, size_t payload_size); 29 void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6, const char *payload, size_t payload_size, const char *options, size_t options_size);
|
checksum.h | 25 uint32_t ipv6_pseudo_header_checksum(const struct ip6_hdr *ip6, uint16_t len, uint8_t protocol);
|
checksum.c | 23 #include <netinet/ip6.h> 87 * ip6 - the ipv6 header 89 * protocol - the transport layer protocol, can be different from ip6->ip6_nxt for fragments 91 uint32_t ipv6_pseudo_header_checksum(const struct ip6_hdr *ip6, uint16_t len, uint8_t protocol) { 97 current = ip_checksum_add(current, &(ip6->ip6_src), sizeof(struct in6_addr)); 98 current = ip_checksum_add(current, &(ip6->ip6_dst), sizeof(struct in6_addr));
|
dump.c | 28 #include <netinet/ip6.h> 72 /* print ip6 header */ 155 void dump_udp6(const struct udphdr *udp, const struct ip6_hdr *ip6, const char *payload, size_t payload_size) { 157 temp_checksum = ipv6_pseudo_header_checksum(ip6, sizeof(*udp) + payload_size, IPPROTO_UDP); 211 void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6, const char *payload, size_t payload_size, const char *options, size_t options_size) { 214 temp_checksum = ipv6_pseudo_header_checksum(ip6, sizeof(*tcp) + options_size + payload_size, IPPROTO_TCP);
|
translate.c | 152 * 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, 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);
|
translate.h | 26 #include <netinet/ip6.h> 59 void fill_ip6_header(struct ip6_hdr *ip6, uint16_t payload_len, uint8_t protocol,
|
/external/tcpdump/ |
print-ip6.c | 24 "@(#) $Header: /tcpdump/master/tcpdump/print-ip6.c,v 1.47.2.5 2007/09/21 07:07:52 hannes Exp $"; 43 #include "ip6.h" 47 * print an IP6 datagram. 52 register const struct ip6_hdr *ip6; local 62 ip6 = (const struct ip6_hdr *)bp; 64 TCHECK(*ip6); 66 (void)printf("truncated-ip6 %u", length); 71 printf("IP6 "); 73 payload_len = EXTRACT_16BITS(&ip6->ip6_plen); 76 (void)printf("truncated-ip6 - %u bytes missing!" [all...] |
print-frag6.c | 37 #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) -
|
print-tcp.c | 47 #include "ip6.h" 146 static int tcp6_cksum(const struct ip6_hdr *ip6, const struct tcphdr *tp, 165 phu.ph.ph_src = ip6->ip6_src; 166 phu.ph.ph_dst = ip6->ip6_dst; 203 register const struct ip6_hdr *ip6; local 210 ip6 = (struct ip6_hdr *)bp2; 212 ip6 = NULL; 248 if (ip6) { 249 if (ip6->ip6_nxt == IPPROTO_TCP) { 251 ip6addr_string(&ip6->ip6_src) 744 struct ip6_hdr *ip6; local [all...] |
print-sunrpc.c | 49 #include "ip6.h" 76 register const struct ip6_hdr *ip6; local 102 ip6 = (struct ip6_hdr *)bp2; 104 ip6addr_string(&ip6->ip6_src), srcid, 105 ip6addr_string(&ip6->ip6_dst), dstid, length);
|
print-udp.c | 51 #include "ip6.h" 319 static int udp6_cksum(const struct ip6_hdr *ip6, const struct udphdr *up, 338 phu.ph.ph_src = ip6->ip6_src; 339 phu.ph.ph_dst = ip6->ip6_dst; 367 const struct ip6_hdr *ip6; local 370 ip6 = (const struct ip6_hdr *)ip; 372 ip6 = NULL; 374 if (ip6) { 375 if (ip6->ip6_nxt == IPPROTO_UDP) { 378 ip6addr_string(&ip6->ip6_src) 429 register const struct ip6_hdr *ip6; local [all...] |
print-dccp.c | 31 #include "ip6.h" 93 static int dccp6_cksum(const struct ip6_hdr *ip6, const struct dccp_hdr *dh, u_int len) 111 phu.ph.ph_src = ip6->ip6_src; 112 phu.ph.ph_dst = ip6->ip6_dst; 221 const struct ip6_hdr *ip6; local 233 ip6 = (const struct ip6_hdr *)data2; 235 ip6 = NULL; 254 if (ip6) { 256 ip6addr_string(&ip6->ip6_src), sport, 257 ip6addr_string(&ip6->ip6_dst), dport) [all...] |
print-sctp.c | 59 #include "ip6.h" 69 const struct ip6_hdr *ip6; local 86 ip6 = (const struct ip6_hdr *)bp2; 88 ip6 = NULL; 106 if (ip6) { 108 ip6addr_string(&ip6->ip6_src), 110 ip6addr_string(&ip6->ip6_dst),
|
print-pgm.c | 37 #include "ip6.h" 161 register const struct ip6_hdr *ip6; local 172 ip6 = (struct ip6_hdr *)bp2; 174 ip6 = NULL; 184 if (ip6) { 186 ip6addr_string(&ip6->ip6_src), 187 ip6addr_string(&ip6->ip6_dst)); 203 if (ip6) { 204 if (ip6->ip6_nxt == IPPROTO_PGM) { 206 ip6addr_string(&ip6->ip6_src) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
ipaddress.h | 65 explicit IPAddress(const in6_addr &ip6) : family_(AF_INET6) { 66 u_.ip6 = ip6; 122 in6_addr ip6; member in union:talk_base::IPAddress::__anon14571
|
ipaddress.cc | 93 return memcmp(&u_.ip6, &other.u_.ip6, sizeof(u_.ip6)) == 0; 124 return memcmp(&u_.ip6.s6_addr, &other.u_.ip6.s6_addr, 16) < 0; 137 return u_.ip6; 151 src = &u_.ip6; 189 in_addr addr = ExtractMappedAddress(u_.ip6);
|
/external/iptables/include/linux/ |
netfilter.h | 54 __be32 ip6[4]; member in union:nf_inet_addr
|
/bionic/libc/kernel/common/linux/ |
netfilter.h | 66 __be32 ip6[4]; member in union:nf_inet_addr
|
/external/iproute2/include/linux/ |
netfilter.h | 64 __be32 ip6[4]; member in union:nf_inet_addr
|
/external/chromium_org/net/quic/crypto/ |
quic_crypto_server_config_test.cc | 164 IPEndPoint ip6 = IPEndPoint(ip, 2); local 173 const string token6 = peer.NewSourceAddressToken(ip6, rand, now); 175 EXPECT_FALSE(peer.ValidateSourceAddressToken(token4, ip6, now)); 176 EXPECT_TRUE(peer.ValidateSourceAddressToken(token6, ip6, now));
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
p1-11.cpp | 29 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/ |
Makefile | 1 PSFILES=ip-cref.ps ip-tunnels.ps api-ip6-flowlabels.ps ss.ps nstat.ps arpd.ps rtstat.ps
|