From: Nicolas Dehaine Date: Wed, 28 Oct 2020 16:11:53 +0000 (+0000) Subject: Add Policy Kind to Response Protobuf message X-Git-Tag: dnsdist-1.6.0-alpha2~19^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83594484bd9b5b02fe08b8e8dc80026d234e1b66;p=thirdparty%2Fpdns.git Add Policy Kind to Response Protobuf message Closes #9653 --- diff --git a/pdns/dnsmessage.proto b/pdns/dnsmessage.proto index e2a89bab5b..b91534a8b2 100644 --- a/pdns/dnsmessage.proto +++ b/pdns/dnsmessage.proto @@ -74,6 +74,7 @@ message PBDNSMessage { optional PolicyType appliedPolicyType = 7; // Type of the filtering policy (RPZ or Lua) applied optional string appliedPolicyTrigger = 8; // The RPZ trigger optional string appliedPolicyHit = 9; // The value (qname or IP) that caused the hit + optional string appliedPolicyKind = 10; // The Kind (RPZ action) applied by the hit } optional DNSResponse response = 13;