up vote 5 down vote favorite
share [g+] share [fb]

In C/C++, how would I turn a blocking socket into a non blocking socket in both WinSocks and *nix; so that select() would work correctly. You can use the pre-processor for the platform specific code.

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

On linux:

fcntl(fd, F_SETFL, O_NONBLOCK);

Windows:

u_long on = 1;
ioctlsocket(fd, FIONBIO, &on);
link|improve this answer
feedback

select() is supposed to work on blocking sockets. It returns when a read() would return immediately, which is always the case with non-blocking sockets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.