ssl.SSLContext.set_servername_callback()

SSLContext.set_servername_callback(server_name_callback) Register a callback function that will be called after the TLS Client

2016-10-07 17:42:53
ssl.SSLError

exception ssl.SSLError Raised to signal an error from the underlying SSL implementation (currently provided by the OpenSSL library)

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

ssl.OP_NO_TLSv1_2 Prevents a TLSv1.2 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

2016-10-07 17:42:47
ssl.SSLSocket.unwrap()

SSLSocket.unwrap() Performs the SSL shutdown handshake, which removes the TLS layer from the underlying socket, and returns

2016-10-07 17:42:59
mmap.mmap.find()

find(sub[, start[, end]]) Returns the lowest index in the object where the subsequence sub is found, such that sub

2016-10-07 17:37:18
socket.socket.accept()

socket.accept() Accept a connection. The socket must be bound to an address and listening for connections. The return value

2016-10-07 17:42:18
ssl.MemoryBIO.read()

read(n=-1) Read up to n bytes from the memory buffer. If n is not specified or negative, all bytes are returned

2016-10-07 17:42:45
socket.getprotobyname()

socket.getprotobyname(protocolname) Translate an Internet protocol name (for example, 'icmp') to a constant suitable

2016-10-07 17:42:14
socket.socket.sendall()

socket.sendall(bytes[, flags]) Send data to the socket. The socket must be connected to a remote socket. The optional flags

2016-10-07 17:42:23
socket.SocketType

socket.SocketType This is a Python type object that represents the socket object type. It is the same as type(socket(

2016-10-07 17:42:26