socket.socket.recv()
  • References/Python/Python/Networking

socket.recv(bufsize[, flags]) Receive data from the socket. The return value is a bytes object representing the data received

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

socket.accept() Accept a connection. The socket must be bound to an address and listening for connections. The return value

2025-01-10 15:47:30
socket.socket.proto
  • References/Python/Python/Networking

socket.proto The socket protocol.

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

ssl.RAND_pseudo_bytes(num) Return (bytes, is_cryptographic): bytes are num pseudo-random bytes, is_cryptographic is

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

socket.getsockopt(level, optname[, buflen]) Return the value of the given socket option (see the Unix man page

2025-01-10 15:47:30
ssl.MemoryBIO.pending
  • References/Python/Python/Networking

pending Return the number of bytes currently in the memory buffer.

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

SSLSocket.pending() Returns the number of already decrypted bytes available for read, pending on the connection.

2025-01-10 15:47:30
ssl.MemoryBIO
  • References/Python/Python/Networking

class ssl.MemoryBIO A memory buffer that can be used to pass data between Python and an SSL protocol instance.

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

write(buf) Write the bytes from buf to the memory BIO. The buf argument must be an object supporting the buffer

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

socket.getnameinfo(sockaddr, flags) Translate a socket address sockaddr into a 2-tuple (host, port). Depending

2025-01-10 15:47:30