Tagged Questions
1
vote
4answers
932 views
Watching sockets with Glib on Windows puts them in non-blocking mode
The following code does not work correctly on Windows (but does on Linux):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setblocking(True)
sock.connect(address)
...