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.