_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 | __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 | __init__ |
Undocumented |
Method | lose |
Close the underlying connection. |
Method | register |
Register a producer with the underlying connection. |
Method | unregister |
Unregister a producer with the underlying connection. |
Method | write |
Write some bytes directly to the connection. |
Method | write |
Write a some bytes directly to the 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... |
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.
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.
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.