class documentation
class RRHeader(tputil.FancyEqMixin): (source)
Constructor: RRHeader(name, type, cls, ttl, ...)
Implements interfaces: twisted.names.dns.IEncodable
A resource record header.
Method | __init__ |
No summary |
Method | __str__ |
Undocumented |
Method | decode |
Reconstruct an object from data read from the given file object. |
Method | encode |
Write a representation of this object to the given file object. |
Method | is |
Undocumented |
Class Variable | cached |
Undocumented |
Class Variable | compare |
Undocumented |
Class Variable | fmt |
str specifying the byte format of an RR. |
Instance Variable | auth |
A bool indicating whether this RRHeader was parsed from an authoritative message. |
Instance Variable | cls |
The query class of the original request. |
Instance Variable | name |
The name about which this reply contains information. |
Instance Variable | payload |
The record described by this header. |
Instance Variable | rdlength |
Undocumented |
Instance Variable | ttl |
The time-to-live for this record. |
Instance Variable | type |
The query type of the original request. |
Inherited from FancyEqMixin
:
Method | __eq__ |
Undocumented |
Method | __ne__ |
Undocumented |
def __init__(self, name:
Union[ bytes, str]
= b'', type: int
= A, cls: int
= IN, ttl: SupportsInt
= 0, payload: Optional[ IEncodableRecord]
= None, auth: bool
= False):
(source)
¶
Parameters | |
name:bytes or str | See RRHeader.name |
type:int | The query type. |
cls:int | The query class. |
ttl:int | Time to live for this record. This will be converted to an int . |
payload:IEncodableRecord or None | An optional Query Type specific data object. |
auth:bool | Undocumented |
Raises | |
TypeError | if the ttl cannot be converted to an int . |
ValueError | if the ttl is negative. |
ValueError | if the payload type is not equal to the type argument. |
Reconstruct an object from data read from the given file object.
Parameters | |
strio:File-like object | A seekable buffer from which bytes may be read. |
length:int or None | The number of bytes in this RDATA field. Most implementations can ignore this value. Only in the case of records similar to TXT where the total length is in no way encoded in the data is it necessary. |
Write a representation of this object to the given file object.
Parameters | |
strio:File-like object | The buffer to write to. It must have a tell() method. |
compdict of bytes to int r None | A mapping of names to byte offsets that have already been written to the buffer, which may be used for compression (see RFC 1035 section 4.1.4). When None , encode without compression. |