twisted.internet.interfaces.IReactorSSL(Interface) interface documentationtwisted.internet.interfaces
          View Source
          (View In Hierarchy)
        
      Known implementations: twisted.internet.posixbase.PosixReactorBase, twisted.test.proto_helpers.MemoryReactor, twisted.test.proto_helpers.RaisingMemoryReactor
| Method | connectSSL | Connect a client Protocol to a remote SSL socket. | 
| Method | listenSSL | Connects a given protocol factory to the given numeric TCP/IP port. The connection is a SSL one, using contexts created by the context factory. | 
Connect a client Protocol to a remote SSL socket.
| Parameters | host | a host name | 
| port | a port number | |
| factory | a twisted.internet.protocol.ClientFactoryinstance | |
| contextFactory | a twisted.internet.ssl.ClientContextFactoryobject. | |
| timeout | number of seconds to wait before assuming the connection has failed. | |
| bindAddress | a (host, port) tuple of local address to bind to, or None. | |
| Returns | An object which provides IConnector. | |
Connects a given protocol factory to the given numeric TCP/IP port. The connection is a SSL one, using contexts created by the context factory.
| Parameters | port | a port number on which to listen | 
| factory | a twisted.internet.protocol.ServerFactoryinstance | |
| contextFactory | an implementor of IOpenSSLContextFactory | |
| backlog | size of the listen queue | |
| interface | the hostname to bind to, defaults to '' (all) |