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

socket.sendfile(file, offset=0, count=None) Send a file until EOF is reached by using high-performance

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

ssl.RAND_add(bytes, entropy) Mix the given bytes into the SSL pseudo-random number generator. The parameter entropy

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

ssl.OP_NO_TLSv1 Prevents a TLSv1 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

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

rfind(sub[, start[, end]]) Returns the highest index in the object where the subsequence sub is found, such that sub

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

ssl.RAND_egd(path) If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket

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

signal.sigwait(sigset) Suspend execution of the calling thread until the delivery of one of the signals specified in the signal

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

signal.sigpending() Examine the set of signals that are pending for delivery to the calling thread (i.e., the signals which

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

writable() Called each time around the asynchronous loop to determine whether a channel’s socket should be added to the list

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