Home | Trees | Index | Help |
|
---|
Package dns :: Package rdtypes :: Package ANY :: Module SOA :: Class SOA |
|
object
--+ |Rdata
--+ | SOA
See Also: RFC 1035
Method Summary | |
---|---|
__init__(self,
rdclass,
rdtype,
mname,
rname,
serial,
refresh,
retry,
expire,
minimum)
| |
Convert any domain names in the rdata to the specified relativization. | |
from_text(cls,
rdclass,
rdtype,
tok,
origin,
relativize)
(Class method) | |
from_wire(cls,
rdclass,
rdtype,
wire,
current,
rdlen,
origin)
(Class method) | |
string |
Convert an rdata to text format. |
string |
Convert an rdata to wire format. |
Inherited from Rdata | |
| |
| |
| |
| |
| |
| |
| |
| |
int |
DNS SIG/RRSIG rdatas apply to a specific type; this type is returned by the covers() function. |
int |
Return a 32-bit type value, the least significant 16 bits of which are the ordinary DNS type, and the upper 16 bits of which are the "covered" type, if any. |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value |
Instance Variable Summary | |
---|---|
int | expiration : The zone's expiration value (in seconds) |
int | minimum : The zone's negative caching time (in seconds, called
"minimum" for historical reasons) |
dns.name.Name object | mname : the SOA MNAME (master name) field |
int | refresh : The zone's refresh value (in seconds) |
int | retry : The zone's retry value (in seconds) |
dns.name.Name object | rname : the SOA RNAME (responsible name) field |
int | serial : The zone's serial number |
Class Variable Summary | |
---|---|
list |
__slots__ = ['mname', 'rname', 'serial', 'refresh', 'ret...
|
member_descriptor |
expire = <member 'expire' of 'SOA' objects>
|
Inherited from Rdata | |
member_descriptor |
rdclass = <member 'rdclass' of 'Rdata' objects>
|
member_descriptor |
rdtype = <member 'rdtype' of 'Rdata' objects>
|
Instance Method Details |
---|
choose_relativity(self, origin=None, relativize=True)Convert any domain names in the rdata to the specified relativization.
|
to_text(self, origin=None, relativize=True, **kw)Convert an rdata to text format.
|
to_wire(self, file, compress=None, origin=None)Convert an rdata to wire format.
|
Instance Variable Details |
---|
expirationThe zone's expiration value (in seconds)
|
minimumThe zone's negative caching time (in seconds, called "minimum" for historical reasons)
|
mnamethe SOA MNAME (master name) field
|
refreshThe zone's refresh value (in seconds)
|
retryThe zone's retry value (in seconds)
|
rnamethe SOA RNAME (responsible name) field
|
serialThe zone's serial number
|
Class Variable Details |
---|
__slots__
|
expire
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sun Jul 31 21:35:42 2005 | http://epydoc.sf.net |