When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.
5 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.
Are you sure that the sockets are in blocking mode?
Error code 10035 is WSAEWOULDBLOCK, This error is returned from operations on nonblocking sockets that cannot be completed immediately (https://learn.microsoft.com/en-us/windows/win32/winsock/windows-sockets-error-codes-2)
you should probably use something like WSAPoll() or at least select() instead of this hackery
I think on windows sockets inherit the non-blocking property, wich means the socket retuned by accept is non-blocking
@brittle remnant Has your question been resolved? If so, run !solved :)