ssl.RAND_egd()

ssl.RAND_egd(path) If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket

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

socket.listen([backlog]) Enable a server to accept connections. If backlog is specified, it must be at least 0 (if

2016-10-07 17:42:21
socket.socket.makefile()

socket.makefile(mode='r', buffering=None, *, encoding=None, errors=None, newline=None) Return a file

2016-10-07 17:42:21
socket.socket.sendfile()

socket.sendfile(file, offset=0, count=None) Send a file until EOF is reached by using high-performance

2016-10-07 17:42:24
ssl.SSLSocket.do_handshake()

SSLSocket.do_handshake() Perform the SSL setup handshake.

2016-10-07 17:42:56
ssl.SSLContext.verify_flags

SSLContext.verify_flags The flags for certificate verification operations. You can set flags like VERIFY_CRL_CHECK_LEAF

2016-10-07 17:42:53
ssl.create_default_context()

ssl.create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=None) Return a new SSLContext

2016-10-07 17:42:43
socket.socket.recvfrom_into()

socket.recvfrom_into(buffer[, nbytes[, flags]]) Receive data from the socket, writing it into buffer instead of creating

2016-10-07 17:42:22
socket.create_connection()

socket.create_connection(address[, timeout[, source_address]]) Connect to a TCP service listening on the Internet address

2016-10-07 17:42:11
signal.setitimer()

signal.setitimer(which, seconds[, interval]) Sets given interval timer (one of signal.ITIMER_REAL, signal

2016-10-07 17:41:59