C++ – Simple Reliable UDP C++ Libraries

cudp

I am in need of a reliable UDP library. The one I wrote does not work too well and I would like to see what a 3rd party can do in the same circumstances.

Enet will not work because of some "interesting" compile issues in xcode (I have another question on stack overflow about that).

Any suggestions for a portable, reliable UDP library would be greatly appreciated.

Best Answer

Try boost::asio or ACE. I would recommend the former over the latter.