tags:

views:

332

answers:

3

Hello, 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.

+3  A: 

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

Emile Cormier
A few years ago, whenever I'd Google "ace", the ACE library would appear on the first page of hits. It's now on page 7. It seems like it's being superseded by boost::asio.
Emile Cormier
Has anyone implemented a CORBA ORB on top of boost::asio yet?
Emile Cormier
Thanks for the suggestion. I marked it as the answer. But we eventually get Enet working in our xcode project. It took all day, but we are good to go now. Thanks again.
EToreo
A: 

I've always felt that the Plan 9 networking libraries were a major upgrade over their Unix counterparts. There is a Unix backport.

Norman Ramsey
+1  A: 

UDT udt.sourceforge.net/

nicboul