twisted.names.secondary.SecondaryAuthorityService(service.Service) class documentationtwisted.names.secondary
(View In Hierarchy)
A service that keeps one or more authorities up to date by doing hourly zone transfers from a master.
| Instance Variable | primary | IP address of the master. (type: str) | 
| Instance Variable | domains | An authority for each domain mirrored from the master. (type: listofSecondaryAuthority) | 
| Method | __init__ | |
| Class Method | fromServerAddressAndDomains | Construct a new SecondaryAuthorityServicefrom a tuple giving a server address and astrgiving the name
of a domain for which this is an authority. | 
| Method | getAuthority | Get a resolver for the transferred domains. | 
| Method | startService | Start the service. | 
| Method | stopService | Stop the service. | 
Inherited from Service:
| Method | __getstate__ | Undocumented | 
| Method | setName | Set the name of the service. | 
| Method | setServiceParent | Set the parent of the service.  This method is responsible for setting 
the parentattribute on this service (the child service). | 
| Method | disownServiceParent | Use this API to remove an IServicefrom anIServiceCollection. | 
| Method | privilegedStartService | Do preparation work for starting the service. | 
Construct a new SecondaryAuthorityService
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 strgiving an IP 
address and the second element of which is aintgiving a port
number.  Together, these define where zone transfers will be attempted 
from. | 
| domain | A bytesgiving the domain to transfer. | |
| Returns | A new instance of SecondaryAuthorityService. | |