socket.inet_ntop()
  • References/Python/Python/Networking

socket.inet_ntop(address_family, packed_ip) Convert a packed IP address (a bytes-like object

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

handle_write() Called when the asynchronous loop detects that a writable socket can be written. Often this method will implement

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

socket.listen([backlog]) Enable a server to accept connections. If backlog is specified, it must be at least 0 (if

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

socket.get_inheritable() Get the

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

exception ssl.SSLWantReadError A subclass of SSLError raised by a non-blocking SSL socket when trying

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

socket.has_ipv6 This constant contains a boolean value which indicates if IPv6 is supported on this platform.

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

socket.getdefaulttimeout() Return the default timeout in seconds (float) for new socket objects. A value of None

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

connect(address) As with the normal socket object, address is a tuple with the first element the host to connect to

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

SSLContext.set_npn_protocols(protocols) Specify which protocols the socket should advertise during the SSL/TLS handshake. It

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

socket.family The socket family.

2025-01-10 15:47:30