]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
bugfix #570: Add TLSA, CDS, CDNSKEY and OPENPGPKEY
authorWillem Toorop <willem@nlnetlabs.nl>
Thu, 20 Nov 2014 11:28:30 +0000 (12:28 +0100)
committerWillem Toorop <willem@nlnetlabs.nl>
Thu, 20 Nov 2014 11:28:30 +0000 (12:28 +0100)
RR types to ldnsx

Changelog
contrib/ldnsx/ldnsx.py

index 2abee86a838fc248bcc5a3218620acb9f0c45802..de2f45fa2348feaf70695ae0b92ec6c6259c44b1 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -38,6 +38,8 @@ TBD
          Thanks Carsten Strotmann
        * bugfix #623: Do not redefine bool type and boolean values
          Thanks Jakob Petsovits
+       * bugfix #570: Add TLSA, CDS, CDNSKEY and OPENPGPKEY RR types to ldnsx
+         Thanks Shussain
 
 1.6.17 2014-01-10
        * Fix ldns_dnssec_zone_new_frm_fp_l to allow the last parsed line of a
index 3ae9424f140cda9b35bc9f12b88fb11302fa65da..9c28734b4953b2c354b4a4e6b7cb926b5ef04a91 100644 (file)
@@ -855,6 +855,8 @@ _rr_types={
        "APL"  : ldns.LDNS_RR_TYPE_APL,
        "ATMA" : ldns.LDNS_RR_TYPE_ATMA,
        "AXFR" : ldns.LDNS_RR_TYPE_AXFR,
+       "CDNSKEY" : ldns.LDNS_RR_TYPE_CDNSKEY,
+       "CDS" : ldns.LDNS_RR_TYPE_CDS,
        "CERT" : ldns.LDNS_RR_TYPE_CERT,
        "CNAME": ldns.LDNS_RR_TYPE_CNAME,
        "COUNT": ldns.LDNS_RR_TYPE_COUNT,
@@ -895,6 +897,7 @@ _rr_types={
        "NSEC3PARAMS" : ldns.LDNS_RR_TYPE_NSEC3PARAMS,
        "NULL" : ldns.LDNS_RR_TYPE_NULL,
        "NXT"  : ldns.LDNS_RR_TYPE_NXT,
+       "OPENPGPKEY" : ldns.LDNS_RR_TYPE_OPENPGPKEY,
        "OPT"  : ldns.LDNS_RR_TYPE_OPT,
        "PTR"  : ldns.LDNS_RR_TYPE_PTR,
        "PX"   : ldns.LDNS_RR_TYPE_PX,
@@ -906,6 +909,7 @@ _rr_types={
        "SOA"  : ldns.LDNS_RR_TYPE_SOA,
        "SRV"  : ldns.LDNS_RR_TYPE_SRV,
        "SSHFP": ldns.LDNS_RR_TYPE_SSHFP,
+       "TLSA" : ldns.LDNS_RR_TYPE_TLSA,
        "TSIG" : ldns.LDNS_RR_TYPE_TSIG,
        "TXT"  : ldns.LDNS_RR_TYPE_TXT,
        "UID"  : ldns.LDNS_RR_TYPE_UID,