Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 499 Bytes

File metadata and controls

27 lines (22 loc) · 499 Bytes

httpservd

What it is

httpservd is a minimal cross platform web server built using C++

It Supports

multiple connection handling

modules written in C++ or C (not fully working yet !)

files and directory permissions

How to build

just clone the repository and use cmake to build it the out will be in

[Build Directory]/bin

or just use the following commands to build :

git clone https://github.com/HomamAlamier/httpservd
cd httpservd
mkdir build
cd build
cmake ../
make