Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 546 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 546 Bytes

BoostCommunicationLibrary

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

Test Server

g++ server.cpp -o asyncServer.out -pthread -lboost_thread
./asyncServer.out

Example code- use of library

g++ CommunicationMenager.cpp -o client.out -pthread -lboost_thread
./client.out