Windows Sockets Error – WSAEWOULDBLOCK 10035

In this post, you’ll learn more about the Windows Socket Error WSAEWOULDBLOCK
10035 returned by the WSAGetLastError function in Windows as well a quick description about the error

Windows Socket Error Code

WSAEWOULDBLOCK
10035

Windows Socket Error Description

Resource temporarily unavailable.
This error is returned from operations on nonblocking sockets that cannot be completed immediately, for example recv when no data is queued to be read from the socket. It is a nonfatal error, and the operation should be retried later. It is normal for WSAEWOULDBLOCK to be reported as the result from calling connect on a nonblocking SOCK_STREAM socket, since some time must elapse for the connection to be established.