ssl.MemoryBIO.eof
  • References/Python/Python/Networking

eof A boolean indicating whether the memory BIO is current at the end-of-file position.

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

closed True if the file is closed. New

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

write(bytes) Write the bytes in bytes into memory at the current position of the file pointer; the file position is

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

socket.accept() Accept a connection. The socket must be bound to an address and listening for connections. The return value

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

signal.sigtimedwait(sigset, timeout) Like sigwaitinfo(), but takes an additional timeout argument specifying

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

handle_accepted(sock, addr) Called on listening channels (passive openers) when a connection has been established with a new

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

ssl.PROTOCOL_TLSv1_2 Selects TLS version 1.2 as the channel encryption protocol. This is the most modern version, and probably

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

read(n=-1) Read up to n bytes from the memory buffer. If n is not specified or negative, all bytes are returned

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

SSLSocket.unwrap() Performs the SSL shutdown handshake, which removes the TLS layer from the underlying socket, and returns

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

socket.getsockopt(level, optname[, buflen]) Return the value of the given socket option (see the Unix man page

2025-01-10 15:47:30