can you recommend me a good c++ library(or implementation) for udp socket (multicast) and tcp working on unix / windows system? tnx
2 Answers
Description
Portable networking and other low-level I/O, including sockets, timers, hostname resolution, socket iostreams, serial ports, file descriptors and Windows HANDLEs.
1 Comment
Safari
i have use one multicast socket for to send packets and some tcp socket. use a library as asio is good? i think to something most light..
There is also the Adaptive Communication Environment. This SO question asks about the pros and cons of three different C++ networking libraries.
If you already depend on Boost, you might as well stick with boost::asio. ACE is quite a large library.