Emmanuel Vasilakis 05ef02a817 Apply some logic to possible streaming destinations (#12866) 2 years ago
..
Makefile.am 675383b26a Makefile.am files indentation (#7252) 5 years ago
README.md c7f2647a62 Docs: Removed Google Analytics tags (#12145) 3 years ago
static-threaded.c 05ef02a817 Apply some logic to possible streaming destinations (#12866) 2 years ago
static-threaded.h 8fbf817ef8 modularized all source code (#4391) 6 years ago

README.md

static-threaded web server

The static-threaded web server spawns a fixed number of threads. All the threads are concurrently listening for web requests on the same sockets. The kernel distributes the incoming requests to them.

Each thread uses non-blocking I/O so it can serve any number of web requests in parallel.

This web server respects the keep-alive HTTP header to serve multiple HTTP requests via the same connection.