home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- import dns.exception as dns
- import dns.rdata as dns
- import dns.name as dns
-
- class NSBase(dns.rdata.Rdata):
- __slots__ = [
- 'target']
-
- def __init__(self, rdclass, rdtype, target):
- super(NSBase, self).__init__(rdclass, rdtype)
- self.target = target
-
-
- def to_text(self, origin = None, relativize = True, **kw):
- target = self.target.choose_relativity(origin, relativize)
- return str(target)
-
-
- def from_text(cls, rdclass, rdtype, tok, origin = None, relativize = True):
- target = tok.get_name()
- target = target.choose_relativity(origin, relativize)
- tok.get_eol()
- return cls(rdclass, rdtype, target)
-
- from_text = classmethod(from_text)
-
- def to_wire(self, file, compress = None, origin = None):
- self.target.to_wire(file, compress, origin)
-
-
- def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None):
- (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, 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):
- return cmp(self.target, other.target)
-
-
-
- class UncompressedNS(NSBase):
-
- def to_wire(self, file, compress = None, origin = None):
- super(UncompressedNS, self).to_wire(file, None, origin)
-
-
-