2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Do not attempt to perform a DNS64 rewrite if RPZ returns NODATA.

This commit is contained in:
Mark Andrews
2019-07-01 13:44:30 +10:00
parent b9dc9b68cd
commit 1eb640049c
3 changed files with 26 additions and 2 deletions

View File

@@ -265,6 +265,9 @@ dns_rpz_policy2str(dns_rpz_policy_t policy) {
case DNS_RPZ_POLICY_MISS:
str = "MISS";
break;
case DNS_RPZ_POLICY_DNS64:
str = "DNS64";
break;
default:
INSIST(0);
ISC_UNREACHABLE();