class ssl.SSLContext(protocol) Create a new SSL context. You must pass protocol which must be one of the PROTOCOL_*
SSLSocket.do_handshake() Perform the SSL setup handshake.
handle_error() Called when an exception is raised and not otherwise handled. The default version prints a condensed traceback
socket.recvfrom_into(buffer[, nbytes[, flags]]) Receive data from the socket, writing it into buffer instead of creating
socket.sendmsg(buffers[, ancdata[, flags[, address]]]) Send normal and ancillary data to the socket, gathering the non-ancillary
socket.sendall(bytes[, flags]) Send data to the socket. The socket must be connected to a remote socket. The optional flags
read([n]) Return a
close() Close the socket. All future operations on the socket object will fail. The remote end-point will receive no more data
ssl.PROTOCOL_SSLv2 Selects SSL version 2 as the channel encryption protocol. This protocol is
class asyncore.dispatcher The dispatcher class is a thin wrapper around a low-level socket object. To make it more
Page 12 of 22