]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
add NXNAME
authorBob Halley <halley@dnspython.org>
Thu, 1 Jan 2026 14:04:15 +0000 (06:04 -0800)
committerBob Halley <halley@dnspython.org>
Thu, 1 Jan 2026 14:04:15 +0000 (06:04 -0800)
dns/rdatatype.py
doc/rfc.rst

index 88a777612a357231699f652b15243d166114dcd2..23940cf53d87ca1ff451502fc156f652add7d458 100644 (file)
@@ -93,6 +93,7 @@ class RdataType(dns.enum.IntEnum):
     LP = 107
     EUI48 = 108
     EUI64 = 109
+    NXNAME = 128
     TKEY = 249
     TSIG = 250
     IXFR = 251
@@ -199,7 +200,7 @@ def is_metatype(rdtype: RdataType) -> bool:
     *rdtype* is a ``dns.rdatatype.RdataType``.
 
     The currently defined metatypes are TKEY, TSIG, IXFR, AXFR, MAILA,
-    MAILB, ANY, and OPT.
+    MAILB, ANY, OPT, and NXNAME.
 
     Returns a ``bool``.
     """
@@ -317,6 +318,7 @@ L64 = RdataType.L64
 LP = RdataType.LP
 EUI48 = RdataType.EUI48
 EUI64 = RdataType.EUI64
+NXNAME = RdataType.NXNAME
 TKEY = RdataType.TKEY
 TSIG = RdataType.TSIG
 IXFR = RdataType.IXFR
index 3995776ad54345e51d8477c2c17ea17562f5dc16..24692786040ee1befdab9f0d5b7a093c9442ea64 100644 (file)
@@ -120,6 +120,9 @@ DNSSEC RFCs
 `RFC 9157 <https://tools.ietf.org/html/rfc9157>`_
     Revised IANA Considerations for DNSSEC.
 
+`RFC 9824 <https://tools.ietf.org/html/rfc9824>`_
+    Compact Denial of Existence in DNSSEC
+
 Misc RFCs
 ---------