Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-06-08 | Support POST requests for PHP scripts | cflip | |
This makes it possible to both read from and write to the standard I/O in php-cgi so that the request body can be written to its stdin and the script can access POST request data. Unfortunately, this isn't quite enough for the user login on the cflip forum to work, since cookies (and other HTTP headers) aren't passed to the script yet. | |||
2023-06-06 | Ignore SIGPIPE signals when writing to a closed socket | cflip | |
2023-06-03 | Respond with 501 Not Implemented for unknown request methods | cflip | |
2023-06-01 | Allow query strings to be read by PHP scripts | cflip | |
php-cgi is now run without any command line arguments and information such as the script filename and the query string are passed in via environment variables. | |||
2023-05-30 | Move request handling code out of net.c and into the main file | cflip | |
2023-05-27 | Split cfws.c into multiple files | cflip | |
2023-05-27 | Load and serve files from the filesystem | cflip | |
2023-05-08 | Begin rewriting cfws in C | cflip | |