Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ multiplayer UDP socket API

Can anyone recommend an easy to use, fast and reliable C++ API for sending and receiving data over a UDP socket? Maybe something that is specifcally intended for multiplayer games?

like image 785
josef.van.niekerk Avatar asked Apr 27 '26 11:04

josef.van.niekerk


1 Answers

It's not specifically for gaming, but if you want to get down to the metal and implement your own protocol over UDP, Boost.Asio is really nice.

like image 92
rjnilsson Avatar answered Apr 29 '26 03:04

rjnilsson