diff options
| author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2001-02-19 13:13:51 +0000 |
|---|---|---|
| committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2001-02-19 13:13:51 +0000 |
| commit | 928268064f1ccaf8d4a4c249dfc35eb8c59dce96 (patch) | |
| tree | 3d593d26c8349ed2957857d59ae62d906b394e1d /include/netdb.h | |
| parent | 54ecfa081332dd72afeb8a58e82ecc9f10e65f24 (diff) | |
Enable AI_ADDRCONFIG as a valid flag of getaddrinfo(3). Some
applications specify AI_ADDRCONFIG and fail to run under FreeBSD.
Latest mews is known. Now, getaddrinfo(3) behaves according to
AI_ADDRCONFIG.
Notes
svn path=/head/; revision=72693
Diffstat (limited to 'include/netdb.h')
| -rw-r--r-- | include/netdb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/netdb.h b/include/netdb.h index 03b4f3ee4061..f07cbf3fdaa7 100644 --- a/include/netdb.h +++ b/include/netdb.h @@ -167,7 +167,8 @@ struct addrinfo { #define AI_CANONNAME 0x00000002 /* fill ai_canonname */ #define AI_NUMERICHOST 0x00000004 /* prevent name resolution */ /* valid flags for addrinfo */ -#define AI_MASK (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST) +#define AI_MASK \ + (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_ADDRCONFIG) #define AI_ALL 0x00000100 /* IPv6 and IPv4-mapped (with AI_V4MAPPED) */ #define AI_V4MAPPED_CFG 0x00000200 /* accept IPv4-mapped if kernel supports */ |
