From c152b615f00b5c639c306d3d8c7c370a6a9b35b6 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 4 Apr 2026 08:41:49 -0700 Subject: [PATCH] Forgot the HHIT file! --- dns/rdtypes/ANY/HHIT.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 dns/rdtypes/ANY/HHIT.py diff --git a/dns/rdtypes/ANY/HHIT.py b/dns/rdtypes/ANY/HHIT.py new file mode 100644 index 00000000..a22b8ad1 --- /dev/null +++ b/dns/rdtypes/ANY/HHIT.py @@ -0,0 +1,13 @@ +# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license + +import dns.immutable +import dns.rdata +import dns.rdtypes.base64base + + +@dns.immutable.immutable +class HHIT(dns.rdtypes.base64base.Base64Base): + """HHIT record + + See RFC 9886 + """ -- 2.47.3