No description
Find a file
Ole Christian Eidheim 31f8ab8d17 Update README.md
2014-07-05 12:09:39 +02:00
httpserver.cpp Initial commit 2014-07-05 11:54:53 +02:00
httpserver.hpp Initial commit 2014-07-05 11:54:53 +02:00
main.cpp updated comments 2014-07-05 12:03:12 +02:00
README.md Update README.md 2014-07-05 12:09:39 +02:00

Simple-Web-Server

A very simple, fast, multithreaded and platform independent HTTP server implemented using C++11 and Boost::Asio. Makes it easy to create REST resources for a C++ application.

See main.cpp for example usage.

Compile with a C++11 compiler supporting regex (for instance g++ 4.9): g++ -O3 -std=c++11 -lboost_system main.cpp httpserver.cpp -o httpserver