lightweight http server C++

Andrei Lopatenko picture Andrei Lopatenko · Nov 12, 2010 · Viewed 35.1k times · Source

I need to build a lightweight http server for my application basically it's a server which listen to a port and outputs a status information on requests no high load, https, other functionality is required is there any C++ library which would help me to build an http server

Answer

Gui Prá picture Gui Prá · Nov 12, 2010

Have a look at http://code.google.com/p/mongoose/. I think it's separated in a library that does exactly what you want. It's written in C, though.