summaryrefslogtreecommitdiff
path: root/dns/rdtypes/ANY/HIP.py
diff options
context:
space:
mode:
Diffstat (limited to 'dns/rdtypes/ANY/HIP.py')
-rw-r--r--dns/rdtypes/ANY/HIP.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/rdtypes/ANY/HIP.py b/dns/rdtypes/ANY/HIP.py
index 8ac1d17..51e42ac 100644
--- a/dns/rdtypes/ANY/HIP.py
+++ b/dns/rdtypes/ANY/HIP.py
@@ -67,14 +67,14 @@ class HIP(dns.rdata.Rdata):
servers.append(server)
return cls(rdclass, rdtype, hit, algorithm, key, servers)
- def to_wire(self, file, compress=None, origin=None):
+ def _to_wire(self, file, compress=None, origin=None, canonicalize=False):
lh = len(self.hit)
lk = len(self.key)
file.write(struct.pack("!BBH", lh, self.algorithm, lk))
file.write(self.hit)
file.write(self.key)
for server in self.servers:
- server.to_wire(file, None, origin)
+ server.to_wire(file, None, origin, False)
@classmethod
def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin=None):