This library is a C++ wrapper for BSD sockets, pthread and semaphore. I've test it on MacOS, but it should be working on Linux There are 3 Libraries:
contains the Thread class, Semaphore class and Mutex class, Time class, PRNG class and Prime number generator class
####Net
contains the TcpSocket, TcpServer, UdpSocket, HtmlRequest classes. There is also a HtmlParser
####Fs
contains methods for using the file system: File, BufferedInput BufferedOutput, ...
Online documentation can be found here
You need cmake in order to compile and install the libraries
To install the library go to the project directory and type de following:
mkdir build
cd build
cmake ../
sudo make && make install
Small examples are located in the Tests folder. Basicaly the libraries are easy to use, notice that for the Thread class you need to subclass it and override the run() method
Add Signals, ...