Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-09 | Gracefully shut down server when interrupted with Ctrl+C | cflip | |
2023-06-06 | Ignore SIGPIPE signals when writing to a closed socket | cflip | |
2023-05-30 | Move request handling code out of net.c and into the main file | cflip | |
2023-05-30 | Refactor response building code | cflip | |
This new strategy involves finding the local file path for the given URI, determining what method to use to fulfill the request (read file from disk, use php-cgi, or error), then it writes the response to the client socket. | |||
2023-05-29 | Hacks to make it possible to serve PHP pages | cflip | |
The most significant change is that the functions for reading a file and such write directly to the socket instead of attempting to fill buffers. | |||
2023-05-27 | Split cfws.c into multiple files | cflip | |