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

SSLSocket.getpeercert(binary_form=False) If there is no certificate for the peer on the other end of the connection, return

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
asyncore.dispatcher_with_send
  • References/Python/Python/Networking

class asyncore.dispatcher_with_send A dispatcher subclass which adds simple buffered output capability, useful

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

listen(backlog) Listen for connections made to the socket. The backlog argument specifies the maximum number of queued

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

SSLSocket.compression() Return the compression algorithm being used as a string, or None if the connection isn’t

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

SSLSocket.read(len=1024, buffer=None) Read up to len bytes of data from the SSL socket and return the result as a bytes

2025-01-10 15:47:30