mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
Update.
* resolv/resolv.h (RES_DEFAULT): Add RES_NOIP6DOTINT. * resolv/res_init.c (res_setoptions): Recognize ip6-dotint option. Reset RES_NOIP6DOTINT flag in this case..
This commit is contained in:
parent
b934376424
commit
0acb7b8370
@ -1,5 +1,9 @@
|
||||
2004-08-17 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* resolv/resolv.h (RES_DEFAULT): Add RES_NOIP6DOTINT.
|
||||
* resolv/res_init.c (res_setoptions): Recognize ip6-dotint option.
|
||||
Reset RES_NOIP6DOTINT flag in this case..
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c: Fix memory handling of
|
||||
ai_canonname.
|
||||
|
||||
|
@ -502,6 +502,9 @@ res_setoptions(res_state statp, const char *options, const char *source) {
|
||||
} else if (!strncmp(cp, "no-ip6-dotint",
|
||||
sizeof("no-ip6-dotint") - 1)) {
|
||||
statp->options |= RES_NOIP6DOTINT;
|
||||
} else if (!strncmp(cp, "ip6-dotint",
|
||||
sizeof("ip6-dotint") - 1)) {
|
||||
statp->options &= ~RES_NOIP6DOTINT;
|
||||
} else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) {
|
||||
statp->options |= RES_ROTATE;
|
||||
} else if (!strncmp(cp, "no-check-names",
|
||||
|
@ -210,7 +210,7 @@ struct res_sym {
|
||||
#define RES_NOIP6DOTINT 0x00080000 /* Do not use .ip6.int in IPv6
|
||||
reverse lookup */
|
||||
|
||||
#define RES_DEFAULT (RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
|
||||
#define RES_DEFAULT (RES_RECURSE|RES_DEFNAMES|RES_DNSRCH|RES_NOIP6DOTINT)
|
||||
|
||||
/*
|
||||
* Resolver "pfcode" values. Used by dig.
|
||||
|
Loading…
Reference in New Issue
Block a user