ssl.SSLContext.set_ciphers()

SSLContext.set_ciphers(ciphers) Set the available ciphers for sockets created with this context. It should be a string in the

2016-10-07 17:42:52
asyncore.dispatcher.handle_close()

handle_close() Called when the socket is closed.

2016-10-07 17:27:09
ssl.PROTOCOL_SSLv2

ssl.PROTOCOL_SSLv2 Selects SSL version 2 as the channel encryption protocol. This protocol is

2016-10-07 17:42:47
asyncore.dispatcher.writable()

writable() Called each time around the asynchronous loop to determine whether a channel’s socket should be added to the list

2016-10-07 17:27:11
ssl.SSLWantWriteError

exception ssl.SSLWantWriteError A subclass of SSLError raised by a non-blocking SSL socket when trying

2016-10-07 17:43:00
socket.socket.connect_ex()

socket.connect_ex(address) Like connect(address), but return an error indicator instead of raising an exception

2016-10-07 17:42:19
ssl.PROTOCOL_SSLv3

ssl.PROTOCOL_SSLv3 Selects SSL version 3 as the channel encryption protocol. This protocol is

2016-10-07 17:42:47
ssl.SSLContext.cert_store_stats()

SSLContext.cert_store_stats() Get statistics about quantities of loaded X.509 certificates, count of X.509 certificates flagged

2016-10-07 17:42:50
ssl.SSLContext

class ssl.SSLContext(protocol) Create a new SSL context. You must pass protocol which must be one of the PROTOCOL_*

2016-10-07 17:42:49
socket.socket.gettimeout()

socket.gettimeout() Return the timeout in seconds (float) associated with socket operations, or None if no timeout

2016-10-07 17:42:21