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.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
socket.timeout
  • References/Python/Python/Networking

exception socket.timeout A subclass of

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

read_byte() Returns a byte at the current file position as an integer, and advances the file position by 1.

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

handle_accept() Called on listening channels (passive openers) when a connection can be established with a new remote endpoint

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

socket.fileno() Return the socket’s file descriptor (a small integer), or -1 on failure. This is useful with

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

class mmap.mmap(fileno, length, tagname=None, access=ACCESS_DEFAULT[, offset]) (Windows version) Maps length

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

SSLContext.protocol The protocol version chosen when constructing the context. This attribute is read-only.

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

exception ssl.SSLEOFError A subclass of SSLError raised when the SSL connection has been terminated abruptly. Generally

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