diff --git a/docs/html/____init_____8py.html b/docs/html/____init_____8py.html new file mode 100644 index 0000000..9a02b07 --- /dev/null +++ b/docs/html/____init_____8py.html @@ -0,0 +1,121 @@ + + +
+ + + + +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Namespaces | |
namespace | dnscode |
▼Nmain | |||||
CA | |||||
CAAAA | |||||
CCNAME | |||||
CInvaliadDataException | |||||
CMX | |||||
CNS | |||||
CPTR | |||||
CRecord | |||||
CSOA | |||||
CSRV | |||||
CZone |
▼Ndnscode | |
▼Ndnscode | |
CA | |
CAAAA | |
CCNAME | |
CInvalidDataException | |
CMX | |
CNS | |
CPTR | |
CRecord | |
CSOA | |
CSRV | |
CZone |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.A, including all inherited members.
+__init__(self, str name='@', int ttl=3600, str host='0.0.0.0') | dnscode.dnscode.A | |
data | dnscode.dnscode.A | |
name | dnscode.dnscode.A | |
rtype | dnscode.dnscode.A | |
ttl | dnscode.dnscode.A |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, str host='0.0.0.0') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
data = host | |
str | rtype = 'A' |
name = str(name) | |
ttl = ttl | |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents an 'A' (IPv4 address) record.
dnscode.dnscode.A.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = '0.0.0.0' ) | +
dnscode.dnscode.A.data = host | +
dnscode.dnscode.A.name = str(name) | +
str dnscode.dnscode.A.rtype = 'A' | +
dnscode.dnscode.A.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.AAAA, including all inherited members.
+__init__(self, str name='@', int ttl=3600, str host='0.0.0.0') | dnscode.dnscode.AAAA | |
data | dnscode.dnscode.AAAA | |
name | dnscode.dnscode.AAAA | |
rtype | dnscode.dnscode.AAAA | |
ttl | dnscode.dnscode.AAAA |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, str host='0.0.0.0') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
data = host | |
str | rtype = 'AAAA' |
name = str(name) | |
ttl = ttl | |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents an 'AAAA' (IPv6 address) record.
dnscode.dnscode.AAAA.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = '0.0.0.0' ) | +
dnscode.dnscode.AAAA.data = host | +
dnscode.dnscode.AAAA.name = str(name) | +
str dnscode.dnscode.AAAA.rtype = 'AAAA' | +
dnscode.dnscode.AAAA.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.CNAME, including all inherited members.
+__init__(self, str name='@', int ttl=3600, str host='example.com') | dnscode.dnscode.CNAME | |
data | dnscode.dnscode.CNAME | |
name | dnscode.dnscode.CNAME | |
rtype | dnscode.dnscode.CNAME | |
ttl | dnscode.dnscode.CNAME |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, str host='example.com') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
str | rtype = 'CNAME' |
name = str(name) | |
ttl = ttl | |
data = host | |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents a 'CNAME' (Canonical Name) record.
dnscode.dnscode.CNAME.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'example.com' ) | +
dnscode.dnscode.CNAME.data = host | +
dnscode.dnscode.CNAME.name = str(name) | +
str dnscode.dnscode.CNAME.rtype = 'CNAME' | +
dnscode.dnscode.CNAME.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.InvalidDataException, including all inherited members.
+__init__(self, message) | dnscode.dnscode.InvalidDataException | |
message | dnscode.dnscode.InvalidDataException |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, message) | |
+Public Attributes | |
message = message | |
Exception raised when invalid data is passed to a record.
dnscode.dnscode.InvalidDataException.__init__ | +( | +self, | +|
+ | + | message ) | +
dnscode.dnscode.InvalidDataException.message = message | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.MX, including all inherited members.
+__init__(self, str name='@', int ttl=3600, int priority=10, str host='example.com') | dnscode.dnscode.MX | |
data | dnscode.dnscode.MX | |
host | dnscode.dnscode.MX | |
name | dnscode.dnscode.MX | |
priority | dnscode.dnscode.MX | |
rtype | dnscode.dnscode.MX | |
ttl | dnscode.dnscode.MX |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, int priority=10, str host='example.com') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
str | rtype = 'MX' |
name = name | |
ttl = ttl | |
priority = priority | |
host = host | |
str | data = f"{self.priority} {self.host}" |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents an 'MX' (Mail Exchange) record.
dnscode.dnscode.MX.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | int | priority = 10, | +
+ | + | str | host = 'example.com' ) | +
str dnscode.dnscode.MX.data = f"{self.priority} {self.host}" | +
dnscode.dnscode.MX.host = host | +
dnscode.dnscode.MX.name = name | +
dnscode.dnscode.MX.priority = priority | +
str dnscode.dnscode.MX.rtype = 'MX' | +
dnscode.dnscode.MX.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.NS, including all inherited members.
+__init__(self, str name='@', int ttl=3600, str host='example.com') | dnscode.dnscode.NS | |
data | dnscode.dnscode.NS | |
host | dnscode.dnscode.NS | |
name | dnscode.dnscode.NS | |
rtype | dnscode.dnscode.NS | |
ttl | dnscode.dnscode.NS |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, str host='example.com') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
str | rtype = 'NS' |
name = name | |
ttl = ttl | |
host = target | |
data = host | |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents an 'NS' (Name Server) record.
dnscode.dnscode.NS.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'example.com' ) | +
dnscode.dnscode.NS.data = host | +
dnscode.dnscode.NS.host = target | +
dnscode.dnscode.NS.name = name | +
str dnscode.dnscode.NS.rtype = 'NS' | +
dnscode.dnscode.NS.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.PTR, including all inherited members.
+__init__(self, str name='@', int ttl=3600, str host='example.com') | dnscode.dnscode.PTR | |
data | dnscode.dnscode.PTR | |
name | dnscode.dnscode.PTR | |
rtype | dnscode.dnscode.PTR | |
ttl | dnscode.dnscode.PTR |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, str host='example.com') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
str | rtype = 'PTR' |
name = name | |
ttl = ttl | |
data = host | |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents a 'PTR' (Pointer) record.
dnscode.dnscode.PTR.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'example.com' ) | +
dnscode.dnscode.PTR.data = host | +
dnscode.dnscode.PTR.name = name | +
str dnscode.dnscode.PTR.rtype = 'PTR' | +
dnscode.dnscode.PTR.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.Record, including all inherited members.
+__str__(self) | dnscode.dnscode.Record | |
data | dnscode.dnscode.Record | static |
name | dnscode.dnscode.Record | static |
rclass | dnscode.dnscode.Record | static |
rtype | dnscode.dnscode.Record | static |
ttl | dnscode.dnscode.Record | static |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__str__ (self) | |
+Static Public Attributes | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Base class for DNS records.
dnscode.dnscode.Record.__str__ | +( | +self | ) | ++ |
Returns a string representation of the record.+
+
|
+ +static | +
+
|
+ +static | +
+
|
+ +static | +
+
|
+ +static | +
+
|
+ +static | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.SOA, including all inherited members.
+__init__(self, str name='@', str mname='ns1.example.com', str rname='admin.example.com', int serial=int(time.time()), int refresh=86400, int retry=7200, int expire=15552000, int ttl=21700) | dnscode.dnscode.SOA | |
data | dnscode.dnscode.SOA | |
expire | dnscode.dnscode.SOA | |
mname | dnscode.dnscode.SOA | |
name | dnscode.dnscode.SOA | |
refresh | dnscode.dnscode.SOA | |
retry | dnscode.dnscode.SOA | |
rname | dnscode.dnscode.SOA | |
rtype | dnscode.dnscode.SOA | |
serial | dnscode.dnscode.SOA | |
ttl | dnscode.dnscode.SOA |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', str mname='ns1.example.com', str rname='admin.example.com', int serial=int(time.time()), int refresh=86400, int retry=7200, int expire=15552000, int ttl=21700) | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
str | rtype = 'SOA' |
name = name | |
mname = mname | |
rname = rname | |
serial = serial | |
refresh = refresh | |
retry = retry | |
expire = expire | |
ttl = ttl | |
str | data = f"{self.mname} {self.rname} {self.serial} {self.refresh} {self.retry} {self.expire}" |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents an 'SOA' (Start of Authority) record.
dnscode.dnscode.SOA.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | str | mname = 'ns1.example.com', | +
+ | + | str | rname = 'admin.example.com', | +
+ | + | int | serial = int(time.time()), | +
+ | + | int | refresh = 86400, | +
+ | + | int | retry = 7200, | +
+ | + | int | expire = 15552000, | +
+ | + | int | ttl = 21700 ) | +
str dnscode.dnscode.SOA.data = f"{self.mname} {self.rname} {self.serial} {self.refresh} {self.retry} {self.expire}" | +
dnscode.dnscode.SOA.expire = expire | +
dnscode.dnscode.SOA.mname = mname | +
dnscode.dnscode.SOA.name = name | +
dnscode.dnscode.SOA.refresh = refresh | +
dnscode.dnscode.SOA.retry = retry | +
dnscode.dnscode.SOA.rname = rname | +
str dnscode.dnscode.SOA.rtype = 'SOA' | +
dnscode.dnscode.SOA.serial = serial | +
dnscode.dnscode.SOA.ttl = ttl | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.SRV, including all inherited members.
+__init__(self, str name='@', int ttl=3600, str service="service", str protocol='proto', int priority=10, int weight=10, int port=0, str host='example.com') | dnscode.dnscode.SRV | |
data | dnscode.dnscode.SRV | |
name | dnscode.dnscode.SRV | |
port | dnscode.dnscode.SRV | |
priority | dnscode.dnscode.SRV | |
protocol | dnscode.dnscode.SRV | |
rtype | dnscode.dnscode.SRV | |
service | dnscode.dnscode.SRV | |
target | dnscode.dnscode.SRV | |
ttl | dnscode.dnscode.SRV | |
weight | dnscode.dnscode.SRV |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__init__ (self, str name='@', int ttl=3600, str service="service", str protocol='proto', int priority=10, int weight=10, int port=0, str host='example.com') | |
Public Member Functions inherited from dnscode.dnscode.Record | |
__str__ (self) | |
+Public Attributes | |
str | rtype = 'SRV' |
str | name = f"_{service}._{protocol}.{name}" |
ttl = ttl | |
service = service | |
protocol = protocol | |
priority = priority | |
weight = weight | |
port = port | |
target = target | |
str | data = f"{self.priority} {self.weight} {self.port} {self.target}" |
+Additional Inherited Members | |
Static Public Attributes inherited from dnscode.dnscode.Record | |
str | rclass = 'IN' |
str | rtype = 'A' |
str | name = '@' |
str | data = '0.0.0.0' |
int | ttl = 3600 |
Represents an 'SRV' (Service) record.
dnscode.dnscode.SRV.__init__ | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | service = "service", | +
+ | + | str | protocol = 'proto', | +
+ | + | int | priority = 10, | +
+ | + | int | weight = 10, | +
+ | + | int | port = 0, | +
+ | + | str | host = 'example.com' ) | +
str dnscode.dnscode.SRV.data = f"{self.priority} {self.weight} {self.port} {self.target}" | +
dnscode.dnscode.SRV.port = port | +
dnscode.dnscode.SRV.priority = priority | +
dnscode.dnscode.SRV.protocol = protocol | +
str dnscode.dnscode.SRV.rtype = 'SRV' | +
dnscode.dnscode.SRV.service = service | +
dnscode.dnscode.SRV.target = target | +
dnscode.dnscode.SRV.ttl = ttl | +
dnscode.dnscode.SRV.weight = weight | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
This is the complete list of members for dnscode.dnscode.Zone, including all inherited members.
+__post_init__(self) | dnscode.dnscode.Zone | |
__str__(self) | dnscode.dnscode.Zone | |
add(self, Record record) | dnscode.dnscode.Zone | |
new_A(self, str name='@', int ttl=3600, str host='0.0.0.0') | dnscode.dnscode.Zone | |
new_AAAA(self, str name='@', int ttl=3600, str host='fe80::42:2cff:fe29:8db1') | dnscode.dnscode.Zone | |
new_CNAME(self, str name='@', int ttl=3600, str host='example.com') | dnscode.dnscode.Zone | |
new_MX(self, str name='@', int ttl=3600, int priority=10, str host='example.com') | dnscode.dnscode.Zone | |
new_NS(self, str name='@', int ttl=3600, str host='example.com') | dnscode.dnscode.Zone | |
new_PTR(self, str name='@', int ttl=3600, str host='example.com') | dnscode.dnscode.Zone | |
new_record(self, str name='@', int ttl=3600, str rtype='A', str data='0.0.0.0') | dnscode.dnscode.Zone | |
new_SOA(self, str mname='ns1.example.com', str rname='admin.example.com', int serial=int(time.time()), int refresh=86400, int retry=7200, int expire=15552000, int ttl=21700) | dnscode.dnscode.Zone | |
new_SRV(self, str name='@', int ttl=3600, str service='service', str protocol='proto', int priority=10, int weight=10, str host='example.com') | dnscode.dnscode.Zone | |
origin | dnscode.dnscode.Zone | static |
records | dnscode.dnscode.Zone | static |
records | dnscode.dnscode.Zone | |
save_file(self, str filepath) | dnscode.dnscode.Zone |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Public Member Functions | |
__post_init__ (self) | |
__str__ (self) | |
new_A (self, str name='@', int ttl=3600, str host='0.0.0.0') | |
new_AAAA (self, str name='@', int ttl=3600, str host='fe80::42:2cff:fe29:8db1') | |
new_CNAME (self, str name='@', int ttl=3600, str host='example.com') | |
new_MX (self, str name='@', int ttl=3600, int priority=10, str host='example.com') | |
new_NS (self, str name='@', int ttl=3600, str host='example.com') | |
new_PTR (self, str name='@', int ttl=3600, str host='example.com') | |
new_SOA (self, str mname='ns1.example.com', str rname='admin.example.com', int serial=int(time.time()), int refresh=86400, int retry=7200, int expire=15552000, int ttl=21700) | |
new_SRV (self, str name='@', int ttl=3600, str service='service', str protocol='proto', int priority=10, int weight=10, str host='example.com') | |
new_record (self, str name='@', int ttl=3600, str rtype='A', str data='0.0.0.0') | |
add (self, Record record) | |
save_file (self, str filepath) | |
+Public Attributes | |
str | records = str(record) + '\n' |
+Static Public Attributes | |
str | origin = 'example.com' |
list | records = field(default_factory=list) |
Represents a DNS zone containing multiple records.
dnscode.dnscode.Zone.__post_init__ | +( | +self | ) | ++ |
Initializes a zone with the given origin and ensures it ends with a dot.+
dnscode.dnscode.Zone.__str__ | +( | +self | ) | ++ |
Returns a string representation of the zone.+
dnscode.dnscode.Zone.add | +( | +self, | +|
+ | + | Record | record ) | +
Adds a record to the zone.+
dnscode.dnscode.Zone.new_A | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = '0.0.0.0' ) | +
Creates and adds a new A record to the zone.+
dnscode.dnscode.Zone.new_AAAA | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'fe80::42:2cff:fe29:8db1' ) | +
Creates and adds a new AAAA record to the zone.+
dnscode.dnscode.Zone.new_CNAME | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'example.com' ) | +
Creates and adds a new CNAME record to the zone.+
dnscode.dnscode.Zone.new_MX | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | int | priority = 10, | +
+ | + | str | host = 'example.com' ) | +
Creates and adds a new MX record to the zone.+
dnscode.dnscode.Zone.new_NS | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'example.com' ) | +
Creates and adds a new NS record to the zone.+
dnscode.dnscode.Zone.new_PTR | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | host = 'example.com' ) | +
Creates and adds a new PTR record to the zone.+
dnscode.dnscode.Zone.new_record | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | rtype = 'A', | +
+ | + | str | data = '0.0.0.0' ) | +
Creates and adds a generic DNS record to the zone.+
dnscode.dnscode.Zone.new_SOA | +( | +self, | +|
+ | + | str | mname = 'ns1.example.com', | +
+ | + | str | rname = 'admin.example.com', | +
+ | + | int | serial = int(time.time()), | +
+ | + | int | refresh = 86400, | +
+ | + | int | retry = 7200, | +
+ | + | int | expire = 15552000, | +
+ | + | int | ttl = 21700 ) | +
Creates and adds a new SOA record to the zone.+
dnscode.dnscode.Zone.new_SRV | +( | +self, | +|
+ | + | str | name = '@', | +
+ | + | int | ttl = 3600, | +
+ | + | str | service = 'service', | +
+ | + | str | protocol = 'proto', | +
+ | + | int | priority = 10, | +
+ | + | int | weight = 10, | +
+ | + | str | host = 'example.com' ) | +
Creates and adds a new SRV record to the zone.+
dnscode.dnscode.Zone.save_file | +( | +self, | +|
+ | + | str | filepath ) | +
Saves the zone records to a file.+
+
|
+ +static | +
+
|
+ +static | +
str dnscode.dnscode.Zone.records = str(record) + '\n' | +
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Directories | |
dnscode | |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Files | |
__init__.py | |
dnscode.py | |
+ DNScode 0.1.9
+
+ Simplifying DNS configuration
+ |
+
+Classes | |
class | dnscode.dnscode.InvalidDataException |
class | dnscode.dnscode.Record |
class | dnscode.dnscode.A |
class | dnscode.dnscode.AAAA |
class | dnscode.dnscode.CNAME |
class | dnscode.dnscode.MX |
class | dnscode.dnscode.NS |
class | dnscode.dnscode.PTR |
class | dnscode.dnscode.SOA |
class | dnscode.dnscode.SRV |
class | dnscode.dnscode.Zone |
+Namespaces | |
namespace | dnscode |
namespace | dnscode.dnscode |