class AVC(dns.rdtypes.txtbase.TXTBase):
- """AVC record
+ """AVC record"""
- @see: U{http://www.iana.org/assignments/dns-parameters/AVC/avc-completed-template}"""
+ # See: U{http://www.iana.org/assignments/dns-parameters/AVC/avc-completed-template}
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2015 Red Hat, Inc.
# Author: Petr Spacek <pspacek@redhat.com>
#
class EUI48(dns.rdtypes.euibase.EUIBase):
- """EUI48 record
+ """EUI48 record"""
- @ivar fingerprint: 48-bit Extended Unique Identifier (EUI-48)
- @type fingerprint: string
- @see: rfc7043.txt"""
+ # see: rfc7043.txt
byte_len = 6 # 0123456789ab (in hex)
text_len = byte_len * 3 - 1 # 01-23-45-67-89-ab
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2015 Red Hat, Inc.
# Author: Petr Spacek <pspacek@redhat.com>
#
class EUI64(dns.rdtypes.euibase.EUIBase):
- """EUI64 record
+ """EUI64 record"""
- @ivar fingerprint: 64-bit Extended Unique Identifier (EUI-64)
- @type fingerprint: string
- @see: rfc7043.txt"""
+ # see: rfc7043.txt
byte_len = 8 # 0123456789abcdef (in hex)
text_len = byte_len * 3 - 1 # 01-23-45-67-89-ab-cd-ef
class NINFO(dns.rdtypes.txtbase.TXTBase):
- """NINFO record
- @see: draft-reid-dnsext-zs-01"""
+ """NINFO record"""
+
+ # see: draft-reid-dnsext-zs-01
class SPF(dns.rdtypes.txtbase.TXTBase):
- """SPF record
+ """SPF record"""
- @see: RFC 4408"""
+ # see: RFC 4408
class A(dns.rdtypes.mxbase.MXBase):
- """A record for Chaosnet
- @ivar domain: the domain of the address
- @type domain: dns.name.Name object
- @ivar address: the 16-bit address
- @type address: int"""
+ """A record for Chaosnet"""
+
+ # domain: the domain of the address
+ # address: the 16-bit address
__slots__ = ['domain', 'address']