signal.siginterrupt()
  • References/Python/Python/Networking

signal.siginterrupt(signalnum, flag) Change system call restart behaviour: if flag is

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

asyncore.loop([timeout[, use_poll[, map[, count]]]]) Enter a polling loop that terminates after count passes or all open channels

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

SSLSocket.write(buf) Write buf to the SSL socket and return the number of bytes written. The buf argument

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

socket.family The socket family.

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

class ssl.SSLObject A reduced-scope variant of SSLSocket representing an SSL protocol instance that does not contain

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

socket.socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None) Create a new socket using the given address family, socket

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