twisted.internet.ssl.Client(tcp.Client)
class documentationtwisted.internet.ssl
View Source
(View In Hierarchy)
I am an SSL client.
Method | __init__ | |
Method | _connectDone | This is a hook for when a connection attempt has succeeded. |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Inherited from _AbortingMixin (via Client, BaseClient, Connection):
Method | abortConnection | Aborts the connection immediately, dropping any buffered data. |
Instance Variable | _aborting | Set to True when abortConnection is called. (type: bool ) |
Parameters | reactor | An IReactorFDSet
provider which this descriptor will use to get readable and writeable event
notifications. If no value is given, the global reactor will be used. |
This is a hook for when a connection attempt has succeeded.
Here, we build the protocol from the twisted.internet.protocol.ClientFactory
that was passed in, compute a log string, begin reading so as to send
traffic to the newly built protocol, and finally hook up the protocol
itself.
This hook is overridden by ssl.Client
to
initiate the TLS protocol.