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.tokenizer as dns
-
- class NSAP(dns.rdata.Rdata):
- __slots__ = [
- 'address']
-
- def __init__(self, rdclass, rdtype, address):
- super(NSAP, self).__init__(rdclass, rdtype)
- self.address = address
-
-
- def to_text(self, origin = None, relativize = True, **kw):
- return '0x%s' % self.address.encode('hex_codec')
-
-
- def from_text(cls, rdclass, rdtype, tok, origin = None, relativize = True):
- address = tok.get_string()
- t = tok.get_eol()
- if address[0:2] != '0x':
- raise dns.exception.SyntaxError, 'string does not start with 0x'
- address[0:2] != '0x'
- address = address[2:].replace('.', '')
- if len(address) % 2 != 0:
- raise dns.exception.SyntaxError, 'hexstring has odd length'
- len(address) % 2 != 0
- address = address.decode('hex_codec')
- return cls(rdclass, rdtype, address)
-
- from_text = classmethod(from_text)
-
- def to_wire(self, file, compress = None, origin = None):
- file.write(self.address)
-
-
- def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin = None):
- address = wire[current:current + rdlen]
- return cls(rdclass, rdtype, address)
-
- from_wire = classmethod(from_wire)
-
- def _cmp(self, other):
- return cmp(self.address, other.address)
-
-
-