From dbc440bab2bc2127e826fde39be949181d2a1f1e Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Tue, 23 Jul 2013 10:00:55 +0200 Subject: [PATCH] * bugfix #508: ldnsx Adding NSEC3PARAM to known/allowable RR type dictionary. Patch from shussain. --- Changelog | 2 ++ contrib/ldnsx/ldnsx.py | 1 + 2 files changed, 3 insertions(+) diff --git a/Changelog b/Changelog index 15cdbed1..f3d4b38e 100644 --- a/Changelog +++ b/Changelog @@ -26,6 +26,8 @@ ldns_pkt_ixfr_request_new_frm_str. * bugfix #507: ldnsx Fix use of non-existent variables and not properly referring to instance variable. Patch from shussain. + * bugfix #508: ldnsx Adding NSEC3PARAM to known/allowable RR type + dictionary. Patch from shussain. 1.6.16 2012-11-13 * Fix Makefile to build pyldns with BSD make diff --git a/contrib/ldnsx/ldnsx.py b/contrib/ldnsx/ldnsx.py index b61a9e72..3ae9424f 100644 --- a/contrib/ldnsx/ldnsx.py +++ b/contrib/ldnsx/ldnsx.py @@ -891,6 +891,7 @@ _rr_types={ "NSAP_PTR" : ldns.LDNS_RR_TYPE_NSAP_PTR, "NSEC" : ldns.LDNS_RR_TYPE_NSEC, "NSEC3": ldns.LDNS_RR_TYPE_NSEC3, + "NSEC3PARAM" : ldns.LDNS_RR_TYPE_NSEC3PARAM, "NSEC3PARAMS" : ldns.LDNS_RR_TYPE_NSEC3PARAMS, "NULL" : ldns.LDNS_RR_TYPE_NULL, "NXT" : ldns.LDNS_RR_TYPE_NXT, -- 2.47.3