Costa Tsaousis ed3ba44514 functions cancelling (#15977) 1 год назад
..
Makefile.am 675383b26a Makefile.am files indentation (#7252) 5 лет назад
README.md 2c60f324ee Add markdown files in Learn (#14466) 2 лет назад
static-threaded.c ed3ba44514 functions cancelling (#15977) 1 год назад
static-threaded.h ccfbdb5c3d Remove extern from function declared in headers. (#13790) 2 лет назад

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.