t.i._._BypassTLS(object) : class documentation

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

_BypassTLS is used as the transport object for the TLS protocol object used to implement startTLS. Its methods skip any TLS logic which startTLS enables.
Method __init__ Undocumented
Method __getattr__ Forward any extra attribute access to the original transport object. For example, this exposes getHost, the behavior of which does not change after TLS is enabled.
Method write Write some bytes directly to the connection.
Method writeSequence Write a some bytes directly to the connection.
Method loseConnection Close the underlying connection.
Method registerProducer Register a producer with the underlying connection.
Method unregisterProducer Unregister a producer with the underlying connection.
Instance Variable _base A transport class _BypassTLS has been mixed in with to which methods will be forwarded. This class is only responsible for sending bytes over the connection, not doing TLS.
Instance Variable _connection A Connection which TLS has been started on which will be proxied to by this object. Any method which has its behavior altered after startTLS will be skipped in favor of the base class's implementation. This allows the TLS protocol object to have direct access to the transport, necessary to actually implement TLS.
_base =
A transport class _BypassTLS has been mixed in with to which methods will be forwarded. This class is only responsible for sending bytes over the connection, not doing TLS.
_connection =
A Connection which TLS has been started on which will be proxied to by this object. Any method which has its behavior altered after startTLS will be skipped in favor of the base class's implementation. This allows the TLS protocol object to have direct access to the transport, necessary to actually implement TLS.
def __init__(self, base, connection): (source)
Undocumented
def __getattr__(self, name): (source)
Forward any extra attribute access to the original transport object. For example, this exposes getHost, the behavior of which does not change after TLS is enabled.
def write(self, data): (source)
Write some bytes directly to the connection.
def writeSequence(self, iovec): (source)
Write a some bytes directly to the connection.
def loseConnection(self, *args, **kwargs): (source)
Close the underlying connection.
def registerProducer(self, producer, streaming): (source)
Register a producer with the underlying connection.
def unregisterProducer(self): (source)
Unregister a producer with the underlying connection.
API Documentation for Twisted, generated by pydoctor at 2012-12-26 12:18:15.