Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I haven't done work in C/C++ for a little bit and was just wondering what people's favorite cross platform libraries are to use.

I'm looking for something that is a good quick and dirty library as well as a library that is a little more robust. Often those are two different libraries and that's okay.

share|improve this question
2  
Boost::Graph? :) – kotlinski Dec 19 '10 at 11:16
1  
ASIO - There is nothing better, also it will be apart of TR2. In short it will be the standard C++ library for networking and asynch I/O and processes. – Jared Krumsie Mar 17 '12 at 9:40

closed as not constructive by templatetypedef, Johan, BalusC, Mat, Richard Sep 17 '11 at 7:06

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

21 Answers

up vote 47 down vote accepted

Boost.Asio is really good, though the documentation is scarce.

ACE is also good, a bit more mature and has a couple of books to support it.

C++ Network Library looks promising.

share|improve this answer
2  
Boost.Asio is like bear bones Objects on wire. Ace is a higher level of abstraction and includes a <b>lot</b> of other stuff (its also a bit dated if you look at the source). – Loki Astari Sep 23 '08 at 18:01
10  
Boost is very good and it has the advantage that the new standard library for C++0x will be based on it to a large extent. I've used ACE extensively and I dislike it: it imposes too much of its own architecture, it doesn't mesh with STL, the code is not readable, and the documentation is not good. – Cayle Spandon Mar 1 '09 at 23:26
4  
I'd rather program directly with BSD sockets than use ACE's networking stuff for another project. It is pretty hard to understand and use unless you have an ACE book right there. It also is less "C++-ish" and more overzealous object oriented (you may like that though). – Greg Rogers Mar 13 '09 at 14:16
8  
ACE is probably one of the worst and most over engineered library. It is utterly useless and a waste of time. – Jared Krumsie Mar 17 '12 at 9:41
1  
Don't bet on C++ Network Library just yet, as their HTTP implementation, seems to be an copy of one of Asio examples... (At least for the server part, that is a bad copy of http server 1 from asio examples). – Coyote21 May 6 '12 at 23:28

Just to clear up any confusion, is the answer to the best C++ library for anything always BOOST?

Usually. And if Boost doesn't have it, the answer is inevitably 'Write one for Boost'. In general, boost can be considered to be the nonstandard standard library, and if you code C++ without Boost, you are probably wasting time.

share|improve this answer
26  
You sound a little crazy, fanboy-ish. You are however correct. – deft_code Aug 29 '09 at 1:04
3  
Boost people are so fanatical about perfect-C++. that the documentation never gets written. It has one sentence per function, that is good documentation? – unixman83 Apr 18 '11 at 23:33
1  
Boost needs a graphics library! – arasmussen Feb 19 '12 at 4:16
1  
@arasmussen Enter: Qt. It has its own quirks but provides a bunch of the same functionality that boost does as well as gui. – MrFox Aug 2 '12 at 18:36
4  
+1 "if you code C++ without Boost, you are probably wasting time." will quote you often, fyi. – C-x C-t Oct 31 '12 at 23:03
show 1 more comment

Not that I would prefer this to BOOST:ASIO, but In order to inform you:

POCO:

The POCO C++ Libraries aim to be for network-centric, cross-platform C++ software development what Apple's Cocoa is for Mac development, or Ruby on Rails is for Web development — a powerful, yet easy to use platform to build your applications upon.

The POCO C++ Libraries are built strictly on standard ANSI/ISO C++, including the standard library. The developers of the POCO C++ Libraries attempt to find a good balance between using advanced C++ features and keeping the classes comprehensible and the code clean, consistent and easy to maintain.

share|improve this answer
IMO Poco is an excellent choice. It is written in modern yet readable C++ style and the header files are very well documented. – StackedCrooked Jun 20 '09 at 20:03
Yet the networking library enforces a single thread per connection model on you. – Hassan Syed Mar 4 '10 at 14:18
Thank you! POCO is excellent. – Andre Boos Dec 27 '11 at 4:30

If you want a fast library, try Raknet.

Raknet is built for game development, but because of this, it has high performance and reliability. You can watch a video of their features here

share|improve this answer
1  
The link you provided is broken. This one works though. – GenTiradentes Jun 7 '10 at 3:01
Thanks for the heads up. Updated. – MrValdez Jun 7 '10 at 4:51

Quick and dirty

Roll your own with Windows Sockets 2 (unless you really need Unix support)

  • Handle ALL errors by aborting and printing a message to stderr. Later handle benign errors on a case-by-case basis.
  • Use Overlapped I/O with completion ports. It is most efficent on Windows. libev is best on Linux.

Robust library

For free? One does not exist.

But paid libraries (such as Qt by Nokia) are very useful.

There might be a great library somewhere online. Who knows, by the time you've read the code to find out, you could have written your own or purchased a license to Qt. There are many abandoned efforts out there.

Rant on Boost.Asio.

Boost.Asio is too intellectual to be useful. Templates are bad because they copy objects between incompatible types, which can be slow. And the namespaces are HUGE!

Boost.Asio also lacks important documentation regarding threading issues. And is not very efficent when you need access to the internal structures (like IPv6 address bytes). Reading their source code sucks because of all the many namespaces and too many templates.

ACE is seems to suffer many of the shortcomings that boost.Asio does.

Conclusion: Where robustness and speed are a concern, stick to a Event Library like libev on Linux. And use Overlapped I/O Completion Ports on Windows. With the BSD sockets API.

Qt is one of the few well implemented socket libraries. CURL is also if you are only doing HTTP/FTP client transfers.

share|improve this answer
+1 for suggesting Qt, which is free to use as it has an LGPL license with even more added freedom. (project with up to 5% qt code doesn't have to display Qt LGPL) See: qt-project.org/doc/qt-4.8/lgpl.html – nurettin Mar 10 at 19:22

Boost.Asio.

share|improve this answer
1  
quality is definitely good. documentation lacks terribly. – unixman83 Dec 19 '10 at 10:19

ØMQ \zeromq\

Crossroads I/O is a fork of the ZeroMQ project.

share|improve this answer

I'll second or third or whatever BoosT.ASIO just to add that while the documentation is fairly sparse, the tutorials and examples are quite good and should be enough to get you started. I've found it to be fairly well performing, as well.

share|improve this answer
not for UDP. Also makes heavy use of classes. Very hard to get at needed data efficiently, stuff is private, memcpy'ed, etc... – unixman83 Dec 19 '10 at 10:24
@unixman83: It's C++. Of course it makes use of classes. And if you try to access private members, you're most likely doing something wrong. – user350814 Jan 18 '11 at 17:00
3  
@nebukadnezzar in something like a BitTorrent client or a Web Server, efficiency is too important to let classes and privacy get in the way. – unixman83 Apr 17 '11 at 3:04

For robust, mature, and full-featured, it's hard to beat ACE. It has respect and acceptance in the aerospace industry, which is where I came into contact with it. A lot of the literature in modern distributed systems design, such as the Reactor and Proactor patterns, came out of Professor Schmidt's work in ACE.

share|improve this answer
3  
ACE is probably one of the worst and most over engineered library. It is utterly useless and a waste of time. - not sure why people are voting this answer. – Jared Krumsie Mar 17 '12 at 9:42

It depends on how near the "implementation" you like to get. One can say (more or less) that nearly all TCP/IP stuff is based on the Berkeleys implementation, be it some windows or some unix it "nearly does not matter". There exist a few higher level libraries based on it, e.g the above mentione apr library is a good example. There are also extra implementation is the glib http://library.gnome.org/devel/glib/stable/glib-IO-Channels.html and surely other libraries like nspr and how they are all named. One of my "favourites" still wasn't mentioned. It's libcurl: http://curl.haxx.se/libcurl/

Regards Friedrich

share|improve this answer
libcurl is great but I believe it only does HTTP, no? The OP provided very little details and did not indicate the protocol he wanted to use. – bortzmeyer Jan 22 '09 at 9:05
2  
No it does not do only HTTP it does HTTPS, FTP and much more curl.haxx.se Regards Friedrich – Friedrich Jan 26 '09 at 6:11

Berkeley Sockets is reasonably cross platform. What are you looking for beyond the basics provided there?

share|improve this answer
4  
In particular, Windows' tiny incompatibilities make this more annoying that you'd think. That's what is meant by cross platform: the ability to do without the pain of dealing with each individual platform's idiosyncrasies. – Yang Nov 7 '09 at 8:39

I really like libevent. It is very scalable and gives you timers and HTTP support right out of the box. It has an active community and fairly good docs.

share|improve this answer
Also, libev is lauded as a efficient alternative to libevent that does not depend on glibc. – unixman83 Apr 17 '11 at 3:06

Since Boost was already mentioned, I've got 2 more:

ACE: http://www.cs.wustl.edu/~schmidt/ACE.html

The ADAPTIVE Communication Environment (ACE(TM)), An OO Network Programming Toolkit in C++.

APR: http://apr.apache.org/

"The mission of the Apache Portable Runtime (APR) project is to create and maintain software libraries that provide a predictable and consistent interface to underlying platform-specific implementations. The primary goal is to provide an API to which software developers may code and be assured of predictable if not identical behaviour regardless of the platform on which their software is built, relieving them of the need to code special-case conditions to work around or take advantage of platform-specific deficiencies or features."

One of APR's goals is portability.

share|improve this answer
Make these separate answers so people can vote on them individually. – Adam Mitz Sep 23 '08 at 4:36
Read the subversion postmortem. They used APR. They said if they had to do it again they wouldn't use apr. – deft_code Aug 29 '09 at 1:07
where's the subversion postmortem. I'm quite suprised to read that the wouldn't use libapr again. I have used it and was quite fond of it an it "simply works" – Friedrich Oct 29 '10 at 4:57

Zeroc

Ice for C++ supplies the raw power required by performance-hungry distributed systems, without forcing users to struggle with an arcane middleware API. The Ice language mapping for C++ enables programmers to be immediately productive and reduces development and maintenance costs by eliminating the need for explicit memory management. Productivity is further enhanced by using the Standard Template Library for data types, eliminating memory leaks with automatic garbage collection, and the availability of a wide variety of useful tools and services including documentation, security, deployment, and database integration. All Ice language mappings are fully interoperable.

share|improve this answer

If you are looking for a high performance network framework, you should take a look at a project coming out of Cambridge, UK called yield.

http://code.google.com/p/yield/

I would not describe it is a "quick and dirty" library, as there is a significant learning curve involved, mostly due to the fundamental difference from "normal" networking approaches; yield is a Staged Event Driven Architecture and is inherently asynchronous...

share|improve this answer

I'm with Adam - Berkeley socket code is portable and lot easier to figure out that Boost asio IMHO. I wrote a cross-platform socket class using Berkeley socket code easily enough, without any platform specifics IIRC.

However, asio is a very powerful library and can take advantage of platform-specifics which may be crucial if you are writing a heavy-duty network application, but in practice in can be quite difficult to implement.

share|improve this answer

As Friedrich pointed out, libcurl is a good bet if you are developing in C, not C++.

C and C++ are very different languages especially when it comes to available libraries.

share|improve this answer
3  
Shouldn't this be a comment? – Buhake Sindi Sep 17 '11 at 4:49

WvStreams is an excellent C++ networking library that I find makes easy things easy and hard things possible.

share|improve this answer

I wrote my own cross-platform library, as I wanted as light as possible, often used in Games, but working both for Unix and Windows. I prefer nonblocking style code, without using threads.

LION

LION Documentation

Took a little while to implement things like fork() for system()/popen() calls, but I'm pleased with the result.

share|improve this answer

I guess it would depend on what platform you are on... WinSock2 is by default the most widely used on Windows.

share|improve this answer

Though obviously nmost of the libraries are designed for GUI work, the Qt framework has a decent set of networking classes that are easy to use and well documented. You don't have to use the GUI stuff just to use the networking classes so it's worth looking at.

share|improve this answer

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