ssl.match_hostname()

ssl.match_hostname(cert, hostname) Verify that cert (in decoded format as returned by SSLSocket.getpeercert())

2016-10-07 17:42:44
ssl.SSLContext.wrap_socket()

SSLContext.wrap_socket(sock, server_side=False, do_handshake_on_connect=True, suppress_ragged_eofs=True, server_hostname=None) Wrap

2016-10-07 17:42:54
ssl.OP_NO_SSLv3

ssl.OP_NO_SSLv3 Prevents an SSLv3 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

2016-10-07 17:42:46
socket.inet_aton()

socket.inet_aton(ip_string) Convert an IPv4 address from dotted-quad string format (for example, ‘123.45.67.89’) to 32-bit packed

2016-10-07 17:42:16
asyncore.dispatcher.handle_accept()

handle_accept() Called on listening channels (passive openers) when a connection can be established with a new remote endpoint

2016-10-07 17:27:09
socket.socket.recv_into()

socket.recv_into(buffer[, nbytes[, flags]]) Receive up to nbytes bytes from the socket, storing the data into a buffer

2016-10-07 17:42:23
ssl.SSLSocket.selected_alpn_protocol()

SSLSocket.selected_alpn_protocol() Return the protocol that was selected during the TLS handshake. If SSLContext.set_

2016-10-07 17:42:57
ssl.SSLSocket.context

SSLSocket.context The SSLContext object this SSL socket is tied to. If the SSL socket was created using the top-level

2016-10-07 17:42:56
signal.signal()

signal.signal(signalnum, handler) Set the handler for signal signalnum to the function handler. handler

2016-10-07 17:42:00
mmap.mmap.close()

close() Closes the mmap. Subsequent calls to other methods of the object will result in a ValueError exception being raised

2016-10-07 17:37:18