ssl.SSLContext.options
  • References/Python/Python/Networking

SSLContext.options An integer representing the set of SSL options enabled on this context. The default value is OP_ALL

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

ssl.enum_crls(store_name) Retrieve CRLs from Windows’ system cert store. store_name may be one of CA,

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

readable() Called each time around the asynchronous loop to determine whether a channel’s socket should be added to the list

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

socket.getservbyname(servicename[, protocolname]) Translate an Internet service name and protocol name to a port number for

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

class ssl.SSLSocket(socket.socket) SSL sockets provide the following methods of

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

signal.alarm(time) If time is non-zero, this function requests that a SIGALRM signal be sent to the process

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

socket.gethostbyaddr(ip_address) Return a triple (hostname, aliaslist, ipaddrlist) where hostname is the

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

socket.detach() Put the socket object into closed state without actually closing the underlying file descriptor. The file descriptor

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

socket.bind(address) Bind the socket to address. The socket must not already be bound. (The format of address

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

socket.sendto(bytes, address) socket.sendto(bytes, flags, address) Send data to the socket. The socket should not

2025-01-10 15:47:30