jdk/src/windows/native/java/net/net_util_md.h
changeset 5456 40ff273941a2
parent 1247 b4c26443dee5
child 5506 202f599c92aa
equal deleted inserted replaced
5455:19d2395cfe3e 5456:40ff273941a2
   220 
   220 
   221 #ifndef IN6_IS_ADDR_ANY
   221 #ifndef IN6_IS_ADDR_ANY
   222 #define IN6_IS_ADDR_ANY(a)      \
   222 #define IN6_IS_ADDR_ANY(a)      \
   223     (((a)->s6_words[0] == 0) && ((a)->s6_words[1] == 0) &&      \
   223     (((a)->s6_words[0] == 0) && ((a)->s6_words[1] == 0) &&      \
   224     ((a)->s6_words[2] == 0) && ((a)->s6_words[3] == 0) &&       \
   224     ((a)->s6_words[2] == 0) && ((a)->s6_words[3] == 0) &&       \
   225     ((a)->s6_words[4] == 0) && ((a)->s6_words[5] == 0))
   225     ((a)->s6_words[4] == 0) && ((a)->s6_words[5] == 0) &&       \
       
   226     ((a)->s6_words[6] == 0) && ((a)->s6_words[7] == 0))
   226 #endif
   227 #endif
   227 
   228 
   228 #ifndef IPV6_V6ONLY
   229 #ifndef IPV6_V6ONLY
   229 #define IPV6_V6ONLY     27 /* Treat wildcard bind as AF_INET6-only. */
   230 #define IPV6_V6ONLY     27 /* Treat wildcard bind as AF_INET6-only. */
   230 #endif
   231 #endif