aboutsummaryrefslogtreecommitdiff
path: root/httpd/httpd.h
AgeCommit message (Collapse)Author
2016-08-15If you see any problem connecting to httpd fastcgi, stalledfcgi-persistReyk Floeter
connections, please have a look at the log files for: "server_response: request %d in %s not finished" where %d is the request number in a persistent connection and %s is either server_file or server_fcgi. The server_fcgi.c code also includes "//"-commented code for two possible solutions: either reset after each FCGI_END_REQUEST or after finishing the end request or any possible padding.
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-18sync; add HSTS and default typeReyk Floeter
2015-07-16sync with -current during c2k15Reyk Floeter
2015-06-23sync with -currentReyk Floeter
2015-06-20Experimental support for rewrites using Lua's lean pattern matching ↵Reyk Floeter
implementation.
2015-06-20sync with -currentReyk Floeter
2015-03-19syncReyk Floeter
2015-03-07Move files the git repositoryReyk Floeter