ssl.SSLContext
  • References/Python/Python/Networking

class ssl.SSLContext(protocol) Create a new SSL context. You must pass protocol which must be one of the PROTOCOL_*

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

SSLSocket.do_handshake() Perform the SSL setup handshake.

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

socket.recvfrom_into(buffer[, nbytes[, flags]]) Receive data from the socket, writing it into buffer instead of creating

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

socket.sendmsg(buffers[, ancdata[, flags[, address]]]) Send normal and ancillary data to the socket, gathering the non-ancillary

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

socket.sendall(bytes[, flags]) Send data to the socket. The socket must be connected to a remote socket. The optional flags

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

read([n]) Return a

2025-01-10 15:47:30
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
ssl.PROTOCOL_SSLv2
  • References/Python/Python/Networking

ssl.PROTOCOL_SSLv2 Selects SSL version 2 as the channel encryption protocol. This protocol is

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

class asyncore.dispatcher The dispatcher class is a thin wrapper around a low-level socket object. To make it more

2025-01-10 15:47:30