ssl.SSLSocket.cipher()
  • References/Python/Python/Networking

SSLSocket.cipher() Returns a three-value tuple containing the name of the cipher being used, the version of the SSL protocol

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

SSLContext.wrap_bio(incoming, outgoing, server_side=False, server_hostname=None) Create a new SSLObject instance

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

handle_expt() Called when there is out of band (OOB) data for a socket connection. This will almost never happen, as OOB is

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

move(dest, src, count) Copy the count bytes starting at offset src to the destination index dest

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

SSLSocket.version() Return the actual SSL protocol version negotiated by the connection as a string, or None is

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
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
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