aboutsummaryrefslogtreecommitdiff
path: root/fcgiwrap.c
AgeCommit message (Collapse)AuthorLines
2009-07-17Compile fixes for OpenBSDFurkan Sahin-2/+3
Thanks to Toni Mueller, original author of the patch
2009-03-17Officially release fcgiwrap under the MIT licenceFurkan Sahin-0/+25
2009-03-17Close child's pipe ends after dup2()ing them to the right placesFurkan Sahin-0/+4
Thanks to Fenixk19 for the report and patch.
2009-02-28Better diagnostics for 403 errorsFurkan Sahin-12/+19
Passed via FastCGI stderr, so should end up in webserver's error log
2009-02-28Simple prefork supportFurkan Sahin-2/+81
(start as fcgiwrap -c <num-children>, with a suitable socket on FD 0)
2008-12-03Don't eat characters after final CR/LFFurkan Sahin-2/+2
2008-06-10Restore default SIGCHLD handler (also SIGPIPE for completeness)Furkan Sahin-0/+2
2008-06-10Keep passing data from CGI to FastCGI even after a descriptor closes earlyFurkan Sahin-1/+1
2008-05-05Fix CR/LF mangling to skip response bodyFurkan Sahin-0/+5
2008-05-05Split out passing the request to a separate functionFurkan Sahin-6/+17
2008-03-22Fix off-by-one while walking the bufferFurkan Sahin-1/+1
2008-03-22Use a much prettier state machineFurkan Sahin-53/+71
2008-03-22Implement a simple state machine to fixup CGI reply line endingsFurkan Sahin-8/+88
2008-03-22Inherit environment from parent in CGI processesFurkan Sahin-0/+68
2008-03-16Fix classic off-by-one in select() callFurkan Sahin-1/+1
2008-03-16Send CGI stderr to real stderr, not to fastcgi streamFurkan Sahin-2/+20
2008-03-16Use INT_MIN instead of -1 as sentinel in max_va()Furkan Sahin-2/+5
2008-03-16Chdir to script's directory before exec (per CGI spec)Furkan Sahin-0/+15
2007-09-30Mostly rewritten for robustness and prettier codeFurkan Sahin-44/+159
2007-03-10Improved CGI permission logicFurkan Sahin-9/+37
Symlinks are now allowed if owner matches
2007-03-10Initial commitFurkan Sahin-0/+170