ssl.SSLContext.set_alpn_protocols()
  • References/Python/Python/Networking

SSLContext.set_alpn_protocols(protocols) Specify which protocols the socket should advertise during the SSL/TLS handshake. It

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

socket.sethostname(name) Set the machine’s hostname to name. This will raise an

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

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

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

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

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

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

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

ssl.PROTOCOL_SSLv3 Selects SSL version 3 as the channel encryption protocol. This protocol is

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

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

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

socket.CMSG_LEN(length) Return the total length, without trailing padding, of an ancillary data item with associated data of

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

resize(newsize) Resizes the map and the underlying file, if any. If the mmap was created with ACCESS_READ or

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

SSLContext.cert_store_stats() Get statistics about quantities of loaded X.509 certificates, count of X.509 certificates flagged

2025-01-10 15:47:30