From 9d71be6b66e69f274813e8adbb23c6e5c2a2444c Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 19 Jun 2009 11:04:10 +0100 Subject: [PATCH] Do not compress names in HIP RRs --- dns/rdtypes/ANY/HIP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/rdtypes/ANY/HIP.py b/dns/rdtypes/ANY/HIP.py index f51f3a84..011ec430 100644 --- a/dns/rdtypes/ANY/HIP.py +++ b/dns/rdtypes/ANY/HIP.py @@ -79,7 +79,7 @@ class HIP(dns.rdata.Rdata): file.write(self.hit) file.write(self.key) for server in self.servers: - server.to_wire(file, compress, origin) + server.to_wire(file, None, origin) def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None): (lh, algorithm, lk) = struct.unpack('!BBH', -- 2.47.3