Click to See Complete Forum and Search --> : pollfd in windows


Red Squirrel
August 31st, 2008, 04:35 PM
poll.h does not exist in windows so poll() for sockets does not compile. Is there a way to make it work, or an alternative method?

MikeAThon
September 2nd, 2008, 06:24 PM
It's my understanding that poll() performs the same functionality as select(). So, if writing portable code, stick to use of the select() function.