twisted.names.resolve.ResolverChain(common.ResolverBase) class documentationtwisted.names.resolve
(View In Hierarchy)
Implements interfaces: twisted.internet.interfaces.IResolver
Lookup an address using multiple IResolvers
| Method | __init__ | |
| Method | lookupAllRecords | Perform an ALL_RECORD lookup. | 
| Method | _lookup | Build a dns.Queryfor the 
given parameters and dispatch it to eachIResolverinself.resolversuntil an answer orerror.AuthoritativeDomainErroris returned. | 
Inherited from ResolverBase:
| Method | exceptionForCode | Convert a response code (one of the possible values of dns.Message.rCodeto an exception instance representing it. | 
| Method | query | Dispatch queryto the method which can handle its type. | 
| Method | lookupAddress | Perform an A record lookup. | 
| Method | lookupIPV6Address | Perform an AAAA record lookup. | 
| Method | lookupAddress6 | Perform an A6 record lookup. | 
| Method | lookupMailExchange | Perform an MX record lookup. | 
| Method | lookupNameservers | Perform an NS record lookup. | 
| Method | lookupCanonicalName | Perform a CNAME record lookup. | 
| Method | lookupMailBox | Perform an MB record lookup. | 
| Method | lookupMailGroup | Perform an MG record lookup. | 
| Method | lookupMailRename | Perform an MR record lookup. | 
| Method | lookupPointer | Perform a PTR record lookup. | 
| Method | lookupAuthority | Perform an SOA record lookup. | 
| Method | lookupNull | Perform a NULL record lookup. | 
| Method | lookupWellKnownServices | Perform a WKS record lookup. | 
| Method | lookupService | Perform an SRV record lookup. | 
| Method | lookupHostInfo | Perform a HINFO record lookup. | 
| Method | lookupMailboxInfo | Perform an MINFO record lookup. | 
| Method | lookupText | Perform a TXT record lookup. | 
| Method | lookupSenderPolicy | Perform a SPF record lookup. | 
| Method | lookupResponsibility | Perform an RP record lookup. | 
| Method | lookupAFSDatabase | Perform an AFSDB record lookup. | 
| Method | lookupZone | Perform an AXFR record lookup. | 
| Method | lookupNamingAuthorityPointer | Perform a NAPTR record lookup. | 
| Method | getHostByName | Resolve the domain name nameinto an IP address. | 
| Class Variable | _errormap | A dictmapping DNS protocol failure response codes to 
exception classes which will be used to represent those failures. | 
| Method | _cbRecords | Undocumented | 
Build a dns.Query for the 
given parameters and dispatch it to each IResolver
in self.resolvers until an answer or error.AuthoritativeDomainError
is returned.
| Parameters | name | DNS name to resolve. (type: str) | 
| type | DNS record type. (type: int) | |
| cls | DNS record class. (type: int) | |
| timeout | Number of seconds after which to reissue the query. When the last timeout 
expires, the query is considered failed. (type: Sequence of int) | |
| Returns | A Deferredwhich fires with a three-tuple of lists oftwisted.names.dns.RRHeaderinstances.  The first element of the tuple gives answers.  The second 
element of the tuple gives authorities.  The third element of the tuple 
gives additional information.  TheDeferredmay 
instead fail with one of the exceptions defined intwisted.names.erroror 
withNotImplementedError. (type:Deferred) | |
Perform an ALL_RECORD lookup.
| Parameters | name | DNS name to resolve. (type: bytesorstr) | 
| timeout | Number of seconds after which to reissue the query. When the last timeout 
expires, the query is considered failed. (type: Sequence of int) | |
| Returns | A Deferredwhich fires with a three-tuple of lists oftwisted.names.dns.RRHeaderinstances.  The first element of the tuple gives answers.  The second 
element of the tuple gives authorities.  The third element of the tuple 
gives additional information.  TheDeferredmay 
instead fail with one of the exceptions defined intwisted.names.erroror 
withNotImplementedError. (type:Deferred) | |