When buffer_writes is enabled, writes won't be passed to the real
socket until flush() is called.
Not multithread safe.
|
|
|
|
|
|
|
|
|
getsockname(self)
Return the socket's own address (socket emulation). |
source code
|
|
|
|
|
recv(self,
bufsize)
Receive data from socket (socket emulation) |
source code
|
|
|
|
|
sendall(self,
data)
Send data to the socket |
source code
|
|
|
setsockopt(self,
level,
optname,
value)
Set the value of the given socket option (socket emulation). |
source code
|
|
|
settimeout(self,
value)
Set a timeout on blocking socket operations (socket emulation). |
source code
|
|
|
shutdown(self,
how)
Shutdown the underlying socket. |
source code
|
|