Home | Trees | Index | Help |
|
---|
Package dns :: Module message :: Class _TextReader |
|
object
--+
|
_TextReader
Method Summary | |
---|---|
__init__(self,
text,
message)
| |
Process one line from the text format header section. | |
Process one line from the text format question section. | |
Process one line from the text format answer, authority, or additional data sections. | |
Read a text format DNS message and build a dns.message.Message object. | |
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.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Instance Variable Summary | |
---|---|
dns.name.Name object | last_name : The most recently read name when building a message object from text
format. |
dns.message.Message object | message : The message object being built |
dns.tokenizer.Tokenizer object | tok : the tokenizer |
bool | updating : Is the message a dynamic update? |
int | zone_rdclass : The class of the zone in messages which are DNS dynamic updates. |
Method Details |
---|
_header_line(self, section)Process one line from the text format header section. |
_question_line(self, section)Process one line from the text format question section. |
_rr_line(self, section)Process one line from the text format answer, authority, or additional data sections. |
read(self)Read a text format DNS message and build a dns.message.Message object. |
Instance Variable Details |
---|
last_nameThe most recently read name when building a message object from text format.
|
messageThe message object being built
|
tokthe tokenizer
|
updatingIs the message a dynamic update?
|
zone_rdclassThe class of the zone in messages which are DNS dynamic updates.
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sun Jul 31 21:35:42 2005 | http://epydoc.sf.net |