From: Kees Monshouwer Date: Mon, 13 May 2013 20:10:28 +0000 (+0200) Subject: add experimental direct dnskey support to rfc2136 X-Git-Tag: rec-3.6.0-rc1~556^2~3^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19dea210af2b81a2b16f36a539446757ecf20290;p=thirdparty%2Fpdns.git add experimental direct dnskey support to rfc2136 --- diff --git a/pdns/rfc2136handler.cc b/pdns/rfc2136handler.cc index 160b93cfc5..11e2b50f56 100644 --- a/pdns/rfc2136handler.cc +++ b/pdns/rfc2136handler.cc @@ -96,7 +96,7 @@ uint16_t PacketHandler::performUpdate(const string &msgPrefix, const DNSRecord * return 0; } - if (!isPresigned && (rrType == QType::RRSIG || rrType == QType::DNSKEY) ) { + if (!isPresigned && ((!::arg().mustDo("experimental-direct-dnskey") && rrType == QType::DNSKEY) || rrType == QType::RRSIG)) { L<