asynchat.async_chat.set_terminator()
  • References/Python/Python/Networking

async_chat.set_terminator(term) Sets the terminating condition to be recognized on the channel. term may be any

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

socket.ioctl(control, option)

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

move(dest, src, count) Copy the count bytes starting at offset src to the destination index dest

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

create_socket(family=socket.AF_INET, type=socket.SOCK_STREAM) This is identical to the creation of a normal socket, and will

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

socket.CMSG_SPACE(length) Return the buffer size needed for recvmsg() to receive an ancillary data item with associated

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

SSLContext.wrap_bio(incoming, outgoing, server_side=False, server_hostname=None) Create a new SSLObject instance

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

socket.setblocking(flag) Set blocking or non-blocking mode of the socket: if flag is false, the socket is set to non-blocking

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

socket.recvfrom(bufsize[, flags]) Receive data from the socket. The return value is a pair (bytes, address) where

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

SSLContext.check_hostname Whether to match the peer cert’s hostname with match_hostname() in SSLSocket.d

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

ssl.get_server_certificate(addr, ssl_version=PROTOCOL_SSLv23, ca_certs=None) Given the address addr of an SSL-protected

2025-01-10 15:47:30