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

socket.settimeout(value) Set a timeout on blocking socket operations. The value argument can be a nonnegative floating

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

async_chat.collect_incoming_data(data) Called with data holding an arbitrary amount of received data. The default method

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

socket.shutdown(how) Shut down one or both halves of the connection. If how is SHUT_RD, further receives

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
asynchat.async_chat.push()
  • References/Python/Python/Networking

async_chat.push(data) Pushes data on to the channel’s fifo to ensure its transmission. This is all you need to do to have the

2025-01-10 15:47:30
socket.timeout
  • References/Python/Python/Networking

exception socket.timeout A subclass of

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

ssl.PROTOCOL_TLSv1_1 Selects TLS version 1.1 as the channel encryption protocol. Available only with openssl version 1.0.1+

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

handle_connect() Called when the active opener’s socket actually makes a connection. Might send a “welcome” banner, or initiate

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

socket.share(process_id) Duplicate a socket and prepare it for sharing with a target process. The target process must be provided

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

SSLSocket.selected_alpn_protocol() Return the protocol that was selected during the TLS handshake. If SSLContext.set_

2025-01-10 15:47:30