Advertisement

Nonblocking sockets

Started by August 02, 2005 01:00 PM
1 comment, last by zix99 19 years, 6 months ago
Hello everyone. I've been working to get nonblocking sockets to work for serveral days now, did a search here, on google, and on MSDN with no success. It would be a great help to me if someone could provide a little snipped of code that demonstarted how to make a socket nonblocking, and possibly what each line of code does (but that isn't necessary). Another possibility (which is ok with me) is how to (i think with the select() command) check if data has arrived on the socket. Basically, what I'm trying to prevent is the program locking up at recv(). I'm using C++ with winsock2. Thanks for the responses ~zix~
---------------------------------------------------Game Programming Resources, Tutorials, and Multimedia | Free Skyboxes
The example code at http-get does this. Both for Linux and Windows, even.
enum Bool { True, False, FileNotFound };
Advertisement
Thanks, great code, it worked.
~zix~
---------------------------------------------------Game Programming Resources, Tutorials, and Multimedia | Free Skyboxes

This topic is closed to new replies.

Advertisement