/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...] |
/external/tcpdump/ |
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-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-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-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-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-esp.c | 50 #include "ip6.h" 352 struct ip6_hdr *ip6 = NULL; local 411 ip6 = (struct ip6_hdr *)bp2; 413 if (!EXTRACT_16BITS(&ip6->ip6_plen)) 416 len = sizeof(struct ip6_hdr) + EXTRACT_16BITS(&ip6->ip6_plen); 423 memcmp(&sin6->sin6_addr, &ip6->ip6_dst,
|
print-nfs.c | 46 #include "ip6.h" 164 struct ip6_hdr *ip6; local 182 ip6 = (struct ip6_hdr *)bp; 183 strlcpy(srcaddr, ip6addr_string(&ip6->ip6_src), 185 strlcpy(dstaddr, ip6addr_string(&ip6->ip6_dst), 894 struct ip6_hdr *ip6 = NULL; local 904 ip6 = (struct ip6_hdr *)bp; 923 else if (ip6) { 925 memcpy(&xmep->client, &ip6->ip6_src, sizeof(ip6->ip6_src)) 946 struct ip6_hdr *ip6 = (struct ip6_hdr *)bp; local [all...] |
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-icmp6.c | 42 #include "ip6.h" 192 static int icmp6_cksum(const struct ip6_hdr *ip6, const struct icmp6_hdr *icp, 211 phu.ph.ph_src = ip6->ip6_src; 212 phu.ph.ph_dst = ip6->ip6_dst; 525 struct ip6_hdr *ip6 = (struct ip6_hdr *)bp; local 536 if (!TTEST(ip6->ip6_nxt)) 539 nh = ip6->ip6_nxt; [all...] |
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...] |
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-isakmp.c | 55 #include "ip6.h" 184 struct ip6_hdr *ip6; local 222 ip6 = (struct ip6_hdr *)bp2; 228 memcpy(&sin6->sin6_addr, &ip6->ip6_src, sizeof(ip6->ip6_src)); 234 memcpy(&sin6->sin6_addr, &ip6->ip6_dst, sizeof(ip6->ip6_dst)); 254 struct ip6_hdr *ip6; local 272 ip6 = (struct ip6_hdr *)bp2; 278 memcpy(&sin6->sin6_addr, &ip6->ip6_src, sizeof(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::__anon11855
|
/external/libppp/src/ |
ncpaddr.h | 44 } ip6; member in union:ncprange::__anon21070
|
radius.c | 262 struct in6_addr ip6; local 509 if (ncpaddr_getip6(&gw, &ip6) && IN6_IS_ADDR_UNSPECIFIED(&ip6)) { [all...] |
/bionic/libc/kernel/common/linux/ |
netfilter.h | 66 __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/include/linux/ |
netfilter.h | 64 __be32 ip6[4]; member in union:nf_inet_addr
|
/external/iptables/include/linux/ |
netfilter.h | 54 __be32 ip6[4]; member in union:nf_inet_addr
|
/external/clang/test/SemaTemplate/ |
typename-specifier.cpp | 49 N::X<N::C>::type *ip6 = &i; // expected-note{{in instantiation of template class 'N::X<N::C>' requested here}} variable
|
/external/kernel-headers/original/linux/ |
netfilter.h | 66 __be32 ip6[4]; member in union:nf_inet_addr
|
/external/guava/guava/src/com/google/common/net/ |
InetAddresses.java | 961 Inet6Address ip6 = (Inet6Address) ip; local [all...] |