Hot answers tagged sockets
2
In the case of a non blocking socket that has no data available, recv will throw the socket.error exception and the value of the exception will have the errno of either EAGAIN or EWOULDBLOCK. Example:
import sys
import socket
import fcntl, os
import errno
from time import sleep
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
...
2
The only solution that actually works was found in a lonely post here: http://www.velocityreviews.com/forums/t557014-socket-vs-_socketobject.html
To get a socket._socketobject from a socket._socket you need to do:
newSockObj = socket.socket(_sock=sock)
Ugly, but it works, as that post said...
1
The problem I see in the posted code link is server does not handle request completely, it accepts (client socket connects) and reads whatever is available on this connection and then waits for more client connections (accepts) which your client program never makes (which is fine).
It does not keep on reading client's input stream (just read once) hence ...
Only top voted, non community-wiki answers of a minimum length are eligible