From: Aki Tuomi Date: Mon, 8 Jun 2015 17:47:45 +0000 (+0300) Subject: Add AXFR and IXFR to type to name map, fixes #2570 X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~78^2~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c15e2752e51bcc22ec42bee700c8bf57a839a27f;p=thirdparty%2Fpdns.git Add AXFR and IXFR to type to name map, fixes #2570 --- diff --git a/pdns/dnsrecords.cc b/pdns/dnsrecords.cc index 9f77397d7a..8284a1900e 100644 --- a/pdns/dnsrecords.cc +++ b/pdns/dnsrecords.cc @@ -481,6 +481,8 @@ void reportBasicTypes() DNSRecordContent::regist(QClass::CHAOS, QType::TXT, &TXTRecordContent::make, &TXTRecordContent::make, "TXT"); TXTRecordContent::report(); DNSRecordContent::regist(QClass::IN, QType::ANY, 0, 0, "ANY"); + DNSRecordContent::regist(QClass::IN, QType::AXFR, 0, 0, "AXFR"); + DNSRecordContent::regist(QClass::IN, QType::IXFR, 0, 0, "IXFR"); } void reportOtherTypes()