mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 13:08:06 +00:00
4696. [port] Enable filter-aaaa support by default on Windows
builds. [RT #45883]
This commit is contained in:
parent
2e743d9bdc
commit
b4eb8b9656
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
||||
4696. [port] Enable filter-aaaa support by default on Windows
|
||||
builds. [RT #45883]
|
||||
|
||||
4695. [bug] cookie-secrets were not being properly checked by
|
||||
named-checkconf. [RT #45886]
|
||||
|
||||
|
@ -620,7 +620,7 @@ my @help = (
|
||||
" enable-native-pkcs11 use native PKCS#11 for all crypto [default=no]\n",
|
||||
" enable-openssl-hash use OpenSSL for hash functions [default=yes]\n",
|
||||
" enable-isc-spnego use SPNEGO from lib/dns [default=yes]\n",
|
||||
" enable-filter-aaaa enable filtering of AAAA records [default=no]\n",
|
||||
" enable-filter-aaaa enable filtering of AAAA records [default=yes]\n",
|
||||
" enable-fixed-rrset enable fixed rrset ordering [default=no]\n",
|
||||
" enable-developer enable developer build settings [default=no]\n",
|
||||
" enable-querytrace enable very verbose query trace [default=no]\n",
|
||||
@ -663,7 +663,7 @@ my $unknown_value;
|
||||
my $enable_intrinsics = "yes";
|
||||
my $enable_native_pkcs11 = "no";
|
||||
my $enable_openssl_hash = "auto";
|
||||
my $enable_filter_aaaa = "no";
|
||||
my $enable_filter_aaaa = "yes";
|
||||
my $enable_isc_spnego = "yes";
|
||||
my $enable_fixed_rrset = "no";
|
||||
my $enable_developer = "no";
|
||||
@ -881,8 +881,8 @@ sub myenable {
|
||||
$enable_isc_spnego = "no";
|
||||
}
|
||||
} elsif ($key =~ /^filter-aaaa$/i) {
|
||||
if ($val =~ /^yes$/i) {
|
||||
$enable_filter_aaaa = "yes";
|
||||
if ($val =~ /^no$/i) {
|
||||
$enable_filter_aaaa = "no";
|
||||
}
|
||||
} elsif ($key =~ /^fixed-rrset$/i) {
|
||||
if ($val =~ /^yes$/i) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user