ChibiWebC is an adventure in writing a small web-server in C.
Current target features are:
- Multi-threading
- GET request parameter support
- POST request support
- Path recognition support with callback handlers
- File serving (basic)
- HTML Templating
As the project develops many decisions must be made on the use of data structures or algorithms. My current approach is to keep it simple, clean and iterate as the requirements change e.g., need more speeeeeed.
This code is a work-in-progress and not designed for external facing web-servers.