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

close() Close the socket. All future operations on the socket object will fail. The remote end-point will receive no more data

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

handle_error() Called when an exception is raised and not otherwise handled. The default version prints a condensed traceback

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

ssl.create_default_context(purpose=Purpose.SERVER_AUTH, cafile=None, capath=None, cadata=None) Return a new SSLContext

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

ssl.cert_time_to_seconds(cert_time) Return the time in seconds since the Epoch, given the cert_time string representing

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

ssl.DER_cert_to_PEM_cert(DER_cert_bytes) Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded string version

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

SSLSocket.get_channel_binding(cb_type="tls-unique") Get channel binding data for current connection, as a bytes object. Returns

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

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

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

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

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