home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import struct
- import dns.exception as dns
- import dns.rdata as dns
- import dns.name as dns
-
- class SRV(dns.rdata.Rdata):
- __slots__ = [
- 'priority',
- 'weight',
- 'port',
- 'target']
-
- def __init__(self, rdclass, rdtype, priority, weight, port, target):
- super(SRV, self).__init__(rdclass, rdtype)
- self.priority = priority
- self.weight = weight
- self.port = port
- self.target = target
-
-
- def to_text(self, origin = None, relativize = True, **kw):
- target = self.target.choose_relativity(origin, relativize)
- return '%d %d %d %s' % (self.priority, self.weight, self.port, target)
-
-
- def from_text(cls, rdclass, rdtype, tok, origin = None, relativize = True):
- priority = tok.get_uint16()
- weight = tok.get_uint16()
- port = tok.get_uint16()
- target = tok.get_name(None)
- target = target.choose_relativity(origin, relativize)
- tok.get_eol()
- return cls(rdclass, rdtype, priority, weight, port, target)
-
- from_text = classmethod(from_text)
-
- def to_wire(self, file, compress = None, origin = None):
- three_ints = struct.pack('!HHH', self.priority, self.weight, self.port)
- file.write(three_ints)
- self.target.to_wire(file, compress, origin)
-
-
- def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None):
- (priority, weight, port) = struct.unpack('!HHH', wire[current:current + 6])
- current += 6
- rdlen -= 6
- (target, cused) = dns.name.from_wire(wire[:current + rdlen], current)
- if cused != rdlen:
- raise dns.exception.FormError
- cused != rdlen
- if origin is not None:
- target = target.relativize(origin)
-
- return cls(rdclass, rdtype, priority, weight, port, target)
-
- from_wire = classmethod(from_wire)
-
- def choose_relativity(self, origin = None, relativize = True):
- self.target = self.target.choose_relativity(origin, relativize)
-
-
- def _cmp(self, other):
- sp = struct.pack('!HHH', self.priority, self.weight, self.port)
- op = struct.pack('!HHH', other.priority, self.weight, self.port)
- v = cmp(sp, op)
- if v == 0:
- v = cmp(self.target, other.target)
-
- return v
-
-
-