Today's OCI C++ lunch features Justin Michel presenting his own networking library—Joost. It abstracts away many of the lower level details and makes network programming simple and correct. The Joost abstraction retains only a few concepts: addresses, connections, events, messages. Hook them up and you've got a little thingy that will do the right things with little programmer attention. Things are done in an asynchronous fashion and nothing blocks. Flow control are handled through events.
The interfaces are carefully designed to make efficient implementations possible on multiple platforms and across programming languages. .NET and Java implementations have been done. C++ implementation is in progress.