aboutsummaryrefslogtreecommitdiff
path: root/httpd/server_fcgi.c
AgeCommit message (Collapse)Author
2017-08-16syncHEADmasterReyk Floeter
2016-08-15syncReyk Floeter
2015-08-20sync CVS commitid: WDQybNKi4LiEFw8K:Reyk Floeter
Change httpd(8) to use C99-style fixed-width integers (uintN_t instead of u_intN_t) and replace u_int with unsigned int. Mixing both variants is a bad style and most contributors seem to prefer this style; it also helps us to get used to it, portability, and standardization. Theoretically no binary change, except one in practice: httpd.o has a different checksum because gcc with -O2 pads/optimizes "struct privsep" differently when using "unsigned int" instead "u_int" for the affected members. "u_int" is just a typedef of "unsigned int", -O0 doesn't build the difference and clang with -O2 doesn't do it either - it is just another curiosity from gcc-land. OK semarie@
2015-08-03syncReyk Floeter
2015-07-17syncReyk Floeter
2015-07-17spacingReyk Floeter
2015-07-17Add clarification, RFC 3875Reyk Floeter
2015-07-17Merge branch 'master' of git://github.com/hrkfdn/httpd into hrkfdn-masterReyk Floeter
2015-06-20sync with -currentReyk Floeter
2015-05-18correctly set PATH_INFO environment variableHenrik Friedrichsen
according to RFC 3875 PATH_INFO should either contain a full path or be empty.
2015-05-15syncReyk Floeter
2015-03-07Move files the git repositoryReyk Floeter