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

SSLSocket.read(len=1024, buffer=None) Read up to len bytes of data from the SSL socket and return the result as a bytes

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

SSLContext.check_hostname Whether to match the peer cert’s hostname with match_hostname() in SSLSocket.d

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

seek(pos[, whence]) Set the file’s current position. whence argument is optional and defaults to os.SEEK_SET

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

socket.inet_pton(address_family, ip_string) Convert an IP address from its family-specific string format to a packed, binary

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

ssl.PROTOCOL_SSLv23 Selects the highest protocol version that both the client and server support. Despite the name, this option

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

socket.getsockname() Return the socket’s own address. This is useful to find out the port number of an IPv4/v6 socket, for instance

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

flush([offset[, size]]) Flushes changes made to the in-memory copy of a file back to disk. Without use of this call there is

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

SSLContext.get_ca_certs(binary_form=False) Get a list of loaded “certification authority” (CA) certificates. If the binary_form

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

exception ssl.SSLSyscallError A subclass of SSLError raised when a system error was encountered while trying to

2025-01-10 15:47:30