Reputation: 1598
Can somebody recommend a free C++ open source library which I will use to build a networked game using UDP. Must be available for Windows/Linux/Mac. As lightweight as possible please.
Upvotes: 3
Views: 11440
Reputation: 5188
A very advanced C UDP-based library, with multiplexing, reliable/unreliable/unsequenced/fragmented delivery. Cross platform. Used and created for an established open source game (Cube 2: Sauerbraten), and if you nibble at its mailing list, you'll see that it's sometimes used for commercial games too.
Upvotes: 3
Reputation: 7696
I'm not using networking myself in C++ but I would give Boost asio a try if I had to do networking.
Upvotes: 1
Reputation: 409136
How about SDL_Net? Not C++ really, but is lightweight and cross-platform.
Upvotes: 4