Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C/C++ - Any good web server library? [closed]

Are there any open source, fast web server libraries? Thanks.

like image 740
Alon Gubkin Avatar asked Sep 28 '09 12:09

Alon Gubkin


3 Answers

mongoose (formely shttpd, GPL v2 and commercial license), libmicrohttpd (LGPL v2.1 license).

like image 144
Alex B Avatar answered Oct 17 '22 23:10

Alex B


As far as I know, libevent has a great event-driven and lightweight http server header.

like image 45
Chaosteil Avatar answered Oct 17 '22 23:10

Chaosteil


If you want to play with the concept you can check this codproject article.

You can also check this wikipedia article whcih compares major light weight embedded server.

You can check AppWeb Http Server also.

like image 40
MRG Avatar answered Oct 17 '22 23:10

MRG