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
ssl.SSLWantWriteError
  • References/Python/Python/Networking

exception ssl.SSLWantWriteError A subclass of SSLError raised by a non-blocking SSL socket when trying

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

SSLContext.load_dh_params(dhfile) Load the key generation parameters for Diffie-Helman (DH) key exchange. Using DH key exchange

2025-01-10 15:47:30
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
socket.if_nameindex()
  • References/Python/Python/Networking

socket.if_nameindex() Return a list of network interface information (index int, name string) tuples.

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

socket.makefile(mode='r', buffering=None, *, encoding=None, errors=None, newline=None) Return a file

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

socket.connect_ex(address) Like connect(address), but return an error indicator instead of raising an exception

2025-01-10 15:47:30