Part of twisted.names.secondary View Source View In Hierarchy
Instance Variable | primary | The IP address of the server from which zone transfers will be attempted. (type: str ) |
Method | __init__ | Undocumented |
Class Method | fromServerAddressAndDomain | Construct a new SecondaryAuthority
from a tuple giving a server address and a str giving the name
of a domain for which this is an authority. |
Method | transfer | Undocumented |
Method | update | Undocumented |
Instance Variable | _port | The port number of the server from which zone transfers will be attempted. |
Instance Variable | _reactor | The reactor to use to perform the zone transfers, or None to
use the global reactor. |
Method | _lookup | Undocumented |
Method | _cbZone | Undocumented |
Method | _ebZone | Undocumented |
Method | _cbTransferred | Undocumented |
Method | _ebTransferred | Undocumented |
Inherited from ResolverBase:
Method | exceptionForCode | Convert a response code (one of the possible values of
dns.Message.rCode to an exception instance representing
it. |
Method | query | Undocumented |
Method | lookupAddress | |
Method | lookupIPV6Address | |
Method | lookupAddress6 | |
Method | lookupMailExchange | |
Method | lookupNameservers | |
Method | lookupCanonicalName | |
Method | lookupMailBox | |
Method | lookupMailGroup | |
Method | lookupMailRename | |
Method | lookupPointer | |
Method | lookupAuthority | |
Method | lookupNull | |
Method | lookupWellKnownServices | |
Method | lookupService | |
Method | lookupHostInfo | |
Method | lookupMailboxInfo | |
Method | lookupText | |
Method | lookupSenderPolicy | |
Method | lookupResponsibility | |
Method | lookupAFSDatabase | |
Method | lookupZone | |
Method | lookupNamingAuthorityPointer | |
Method | lookupAllRecords | |
Method | getHostByName | |
Class Variable | _errormap | A dict mapping DNS protocol failure response codes to
exception classes which will be used to represent those failures. |
Method | _cbRecords | Undocumented |
SecondaryAuthority
from a tuple giving a server address and a str
giving the name
of a domain for which this is an authority.Parameters | serverAddress | A two-tuple, the first element of which is a str giving an IP
address and the second element of which is a int giving a port
number. Together, these define where zone transfers will be attempted
from. |
domain | A str giving the domain to transfer. | |
Returns | A new instance of SecondaryAuthority . |