socket.socket.setsockopt()
  • References/Python/Python/Networking

socket.setsockopt(level, optname, value) Set the value of the given socket option (see the Unix manual page

2025-01-10 15:47:30
ssl.SSLSocket.shared_ciphers()
  • References/Python/Python/Networking

SSLSocket.shared_ciphers() Return the list of ciphers shared by the client during the handshake. Each entry of the returned

2025-01-10 15:47:30
socket.getaddrinfo()
  • References/Python/Python/Networking

socket.getaddrinfo(host, port, family=0, type=0, proto=0, flags=0) Translate the host/port argument into a

2025-01-10 15:47:30
ssl.SSLContext.load_verify_locations()
  • References/Python/Python/Networking

SSLContext.load_verify_locations(cafile=None, capath=None, cadata=None) Load a set of “certification authority” (CA) certificates

2025-01-10 15:47:30
ssl.SSLZeroReturnError
  • References/Python/Python/Networking

exception ssl.SSLZeroReturnError A subclass of SSLError raised when trying to read or write and the SSL connection

2025-01-10 15:47:30
mmap.mmap.size()
  • References/Python/Python/Networking

size() Return the length of the file, which can be larger than the size of the memory-mapped area.

2025-01-10 15:47:30
signal.getsignal()
  • References/Python/Python/Networking

signal.getsignal(signalnum) Return the current signal handler for the signal signalnum. The returned value may be a

2025-01-10 15:47:30
ssl.get_default_verify_paths()
  • References/Python/Python/Networking

ssl.get_default_verify_paths() Returns a named tuple with paths to OpenSSL’s default cafile and capath. The paths are the same

2025-01-10 15:47:30
ssl.SSLContext.load_cert_chain()
  • References/Python/Python/Networking

SSLContext.load_cert_chain(certfile, keyfile=None, password=None) Load a private key and the corresponding certificate. The

2025-01-10 15:47:30