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
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
ssl.OP_NO_SSLv3
  • References/Python/Python/Networking

ssl.OP_NO_SSLv3 Prevents an SSLv3 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

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.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
asyncore.file_dispatcher
  • References/Python/Python/Networking

class asyncore.file_dispatcher A file_dispatcher takes a file descriptor or file object

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
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
asyncore.dispatcher.recv()
  • References/Python/Python/Networking

recv(buffer_size) Read at most buffer_size bytes from the socket’s remote end-point. An empty bytes object implies

2025-01-10 15:47:30