ssl.SSLSocket.server_side
  • References/Python/Python/Networking

SSLSocket.server_side A boolean which is True for server-side sockets and False for client-side sockets

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

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

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

SSLSocket.server_hostname Hostname of the server:

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

ssl.PROTOCOL_TLSv1 Selects TLS version 1.0 as the channel encryption protocol.

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

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

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

socket.connect(address) Connect to a remote socket at address. (The format of address depends on the address

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

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

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

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

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

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

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

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

2025-01-10 15:47:30