vote up 1 vote down star

Hi all!

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?

flag

4 Answers

vote up 2 vote down check

Raknet is amazingly good. So good that is the basis for networking in commercial engines like unity3d. http://www.jenkinssoftware.com

link|flag
This one's packed with features! – Josamoto Oct 26 at 19:31
I really like this one, as according to the site, it has some security features as well as an updater etc! – Josamoto Oct 26 at 19:45
I've decided to give RakNet a whirl, it seems very well documented, and has a lot of features that I can benefit from. Not saying the other implementations suggested are bad, I just decided to pick this library. Thanks for the replies! – Josamoto Oct 28 at 10:23
vote up 2 vote down

You might want to look at the answers to this question: http://stackoverflow.com/questions/107668/what-do-you-use-when-you-need-reliable-udp. I developed a C++ version of ENet (which has a C API) for a client and they use it as the basis of their gaming middleware product.

link|flag
vote up 6 vote down

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.

link|flag
I second this. When I chose enet, boost.asio was not yet released, but it's a great choice. – TheSamFrom1984 Oct 26 at 19:22
But does boost.asio give you anything but cross platform async I/O ? Surely this question is asking for more than that? – Len Holgate Oct 26 at 21:31
@Len: I'm well aware of what asio provides, but the way the question was asked (specifically the "... Maybe ..." part) I figured Boost.Asio could be an interesting choice in case existing frameworks did not fulfill all needs – Cwan Oct 27 at 7:21
I think I just read the question as asking for more than just a way to send udp using C++, but that might just have been my reading of the question. – Len Holgate Oct 27 at 7:37
vote up 4 vote down

enet suits your needs

  • simple
  • fast
  • reliable UDP
  • intended for real time multiplayer games

It's not object-oriented though.

link|flag
I suppose I could wrap it in a class if needed. – Josamoto Oct 26 at 19:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.