More Poll() ?'s

Posted by ultifinitus on Stack Overflow See other posts from Stack Overflow or by ultifinitus
Published on 2011-03-18T23:47:22Z Indexed on 2011/03/19 0:09 UTC
Read the original article Hit count: 140

Filed under:
|
|
|
|

Back again!

I've been doing some async socket programming with select() on windows,and it's been working quite well. However it's only scalable up to 1024 clients.Poll() is the way to get around that limitation, and I know it works on both linux and unix. But it doesn't work with a windows system correct?

I read about WsaPoll(), does it have the exact same functionality? What libraries would I have to link to in order to use it?

Can I increase the socket number safely in windows with FD_SETSIZE? My end program will be on a linux server. However I am testing on a windows system right now. Should I just swap my test machine over to a linux box? (probably going to anyway)

Otherwise what would you recommend to use with windows?

(sorry for all of the questions, I am doing research on my own, I promise =D)

© Stack Overflow or respective owner

Related posts about c++

Related posts about Windows