diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-12-15 21:50:35 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-06-24 23:35:13 +0200 |
commit | cd93c771efbacbf7ce9ff15d2a19f84731cfa4ef (patch) | |
tree | dac6bcfed992fe106ecbe33050e6a8117ed91170 | |
parent | 7c84bfdb5f4ddff0c8660d936520d889917139b5 (diff) | |
download | cygnal-cd93c771efbacbf7ce9ff15d2a19f84731cfa4ef.tar.gz cygnal-cd93c771efbacbf7ce9ff15d2a19f84731cfa4ef.tar.bz2 cygnal-cd93c771efbacbf7ce9ff15d2a19f84731cfa4ef.zip |
Fix comments for AI_ADDRCONFIG and AI_V4MAPPED
-rw-r--r-- | winsup/cygwin/include/netdb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/include/netdb.h b/winsup/cygwin/include/netdb.h index 596fb33d2..968847b8f 100644 --- a/winsup/cygwin/include/netdb.h +++ b/winsup/cygwin/include/netdb.h @@ -158,9 +158,9 @@ extern __declspec(dllimport) int h_errno; #define AI_NUMERICHOST 0x4 /* Input is address, don't resolve. */ #define AI_NUMERICSERV 0x8 /* Input is port number, don't resolve. */ #define AI_ALL 0x100 /* Return v4-mapped and v6 addresses. */ -#define AI_ADDRCONFIG 0x400 /* Only available on Vista. Unchangable default - on older systems. */ -#define AI_V4MAPPED 0x800 +#define AI_ADDRCONFIG 0x400 /* Only return address types available on + this host. */ +#define AI_V4MAPPED 0x800 /* IPv4 mapped addresses are acceptable. */ /* Glibc extensions. We use numerical values taken by winsock-specific extensions. */ #define AI_IDN 0x4000 /* Encode IDN input from current local to |