Around Christmas 2008, I was ranting about how nobody online had made a simple wrapper for sockets so I could make my toy games multiplayer without much effort or thought. So, as with the image loader, my brother wrote it. Below you can download the project he made. It's not well commented and main.cpp is a bit hard to read, but the two classes he created really are simple. It's all wrapped up in simple functions like (for the client) connectToServer, sendData, receiveData, disconnect, and (for the server) startListening, isClientReady, acceptClient, sendData, receiveData, disconnect. His main.cpp runs a simple program to show how all these functions should be used. The project is provided below.