asyncore.dispatcher.accept()
  • References/Python/Python/Networking

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

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

socket.send(bytes[, flags]) Send data to the socket. The socket must be connected to a remote socket. The optional flags

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

ssl.RAND_add(bytes, entropy) Mix the given bytes into the SSL pseudo-random number generator. The parameter entropy

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

handle_close() Called when the socket is closed.

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

socket.htonl(x) Convert 32-bit positive integers from host to network byte order. On machines where the host byte order is the

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

SSLContext.load_dh_params(dhfile) Load the key generation parameters for Diffie-Helman (DH) key exchange. Using DH key exchange

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

socket.gethostbyname(hostname) Translate a host name to IPv4 address format. The IPv4 address is returned as a string, such

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

socket.create_connection(address[, timeout[, source_address]]) Connect to a TCP service listening on the Internet address

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

socket.close() Mark the socket closed. The underlying system resource (e.g. a file descriptor) is also closed when all file

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

socket.getnameinfo(sockaddr, flags) Translate a socket address sockaddr into a 2-tuple (host, port). Depending

2025-01-10 15:47:30