Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

lightweight http server C++ [closed]

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

like image 695
Andrei Lopatenko Avatar asked Nov 12 '10 03:11

Andrei Lopatenko


1 Answers

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.

like image 89
Gui Prá Avatar answered Oct 04 '22 10:10

Gui Prá