Class t.i.s.Server(tcp.Server):

Part of twisted.internet.ssl View Source View In Hierarchy

Implements interfaces: twisted.internet.interfaces.ISSLTransport
I am an SSL server.
Method getHost Return server's address.
Method getPeer Return address of peer.

Inherited from Server:

Method __init__ Server(sock, protocol, client, server, sessionno)
Method __repr__ A string representation of this connection.
Method startTLS Undocumented

Inherited from Connection (via Server):

Method _startTLS Undocumented
Method getHandle Return the socket for this connection.
Method doRead Calls self.protocol.dataReceived with all available data.
Method writeSomeData Connection.writeSomeData(data) -> #of bytes written | CONNECTION_LOST
Method _closeWriteConnection Undocumented
Method readConnectionLost Indicates read connection was lost.
Method connectionLost See abstract.FileDescriptor.connectionLost().
Method logPrefix Return the prefix to log with when I own the logging thread.
Method getTcpNoDelay Return if TCP_NODELAY is enabled.
Method setTcpNoDelay Enable/disable TCP_NODELAY.
Method getTcpKeepAlive Return if SO_KEEPALIVE enabled.
Method setTcpKeepAlive Enable/disable SO_KEEPALIVE.

Inherited from FileDescriptor (via Server, Connection):

Method doWrite Called when data can be written.
Method _postLoseConnection Called after a loseConnection(), when all data has been written.
Method writeConnectionLost Indicates write connection was lost.
Method write Reliably write some data.
Method writeSequence Reliably write a sequence of data.
Method loseConnection Close the connection at the next available opportunity.
Method loseWriteConnection Undocumented
Method stopReading Stop waiting for read availability.
Method stopWriting Stop waiting for write availability.
Method startReading Start waiting for read availability.
Method startWriting Start waiting for write availability.
Method registerProducer Register to receive data from a producer.
Method unregisterProducer Stop consuming data from a producer, without disconnecting.
Method stopConsuming Stop consuming data.
Method resumeProducing Undocumented
Method pauseProducing Undocumented
Method stopProducing Stop producing data.
Method fileno File Descriptor number for select().

Inherited from Ephemeral (via Server, Connection, FileDescriptor):

Method __getstate__ Undocumented
Method __setstate__ Undocumented

Inherited from _SocketCloser (via Server, Connection):

Method _closeSocket Undocumented
def getHost(self): (source)
Return server's address.
def getPeer(self): (source)
Return address of peer.
API Documentation for twisted, generated by pydoctor.