eServ: Embedded Web server toolkit written in pure C
- Jserv's eserv https://code.google.com/p/eserv/
- Built-in HTTP daemon along with dynamic content management
- Multi-threaded HTTP daemon and CGI execution
- Support POSIX environments
MIT License. Please check the file LICENSE for details. The demo CGI programs utilize jQuery, which is copyrighted by jQuery Foundation and other contributors. Both eserv and jQuery are released under MIT License.
- namespace: ex
- file: libeserv/http.h
- default listen port #define PORT 80
- default max threads #define EX_MAX_THREADS 10
- directory www static const char *IndexFile = "index.html"; static const char *RootPath = "www";
- it works, but it's not GOOD enough.