Simple library which handles tcp communication in a nice way. Created as one file: CommunicationMenager.cpp-it has 2 classes needed for nice communication on client side, and example main code. Server is a modified version from Boost Asio site
Compiled under boost asio v1.7.4
g++ server.cpp -o asyncServer.out -pthread -lboost_thread
./asyncServer.out
g++ CommunicationMenager.cpp -o client.out -pthread -lboost_thread
./client.out