ARTICLE AD BOX
I am currently working on a hobby winsock project and I thought I wanted it to be able to handle multiple connections/request at once and serving them individually.
Through asynchronous apis there are a few ways I can go along with this. There's the C++ std library function std::async and on windows there are WsaAsyncSelect, WSAPoll, IOCP. But as a hobbyist and a beginner I had a few questions regarding these.
(Note: I am grouping select/poll/IOCP against the standard C++ functions like eg std::async but if there are major differences between the functions and apis in the same group please do mention)
Also yes, I did look at asio.
