You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
856 B
20 lines
856 B
3 years ago
|
from typing import Dict, Tuple, Any, Optional, BinaryIO
|
||
|
from .name import Name, IDNACodec
|
||
|
class Rdata:
|
||
|
def __init__(self):
|
||
|
self.address : str
|
||
|
def to_wire(self, file : Optional[BinaryIO], compress : Optional[Dict[Name,int]], origin : Optional[Name], canonicalize : Optional[bool]) -> Optional[bytes]:
|
||
|
...
|
||
|
@classmethod
|
||
|
def from_text(cls, rdclass : int, rdtype : int, tok, origin=None, relativize=True):
|
||
|
...
|
||
|
_rdata_modules : Dict[Tuple[Any,Rdata],Any]
|
||
|
|
||
|
def from_text(rdclass : int, rdtype : int, tok : Optional[str], origin : Optional[Name] = None,
|
||
|
relativize : bool = True, relativize_to : Optional[Name] = None,
|
||
|
idna_codec : Optional[IDNACodec] = None):
|
||
|
...
|
||
|
|
||
|
def from_wire(rdclass : int, rdtype : int, wire : bytes, current : int, rdlen : int, origin : Optional[Name] = None):
|
||
|
...
|