]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
* bugfix #508: ldnsx Adding NSEC3PARAM to known/allowable RR type
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 23 Jul 2013 08:00:55 +0000 (10:00 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Tue, 23 Jul 2013 08:00:55 +0000 (10:00 +0200)
  dictionary.  Patch from shussain.

Changelog
contrib/ldnsx/ldnsx.py

index 15cdbed10e442f3f90f791f26969e7e7f64d3792..f3d4b38e72c53e4d326c644f1a3354aa75611d8f 100644 (file)
--- 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
index b61a9e7221c071b962ad62fec44dfdbce799367c..3ae9424f140cda9b35bc9f12b88fb11302fa65da 100644 (file)
@@ -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,