summaryrefslogtreecommitdiff
path: root/sapi/cgi/fastcgi.h
Commit message (Collapse)AuthorAgeFilesLines
* Move fastcgi.c to mainXinchen Hui2015-05-191-151/+0
|
* bump yearXinchen Hui2015-01-151-1/+1
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-2/+2
|
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* Use better data structures (incomplete)Dmitry Stogov2014-02-141-1/+1
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* Reduced overhead of FastCGI using near-perfect hash function and ↵Dmitry Stogov2010-09-011-0/+19
| | | | predcalculated hash values.
* Added apache compatible functions (apache_child_terminate, getallheaders, ↵Dmitry Stogov2010-08-271-0/+1
| | | | apache_request_headers, apache_response_headers) to FastCGI SAPI
* Use the TSRMLS_DC/TSRMLS_CC macros instead of TSRMLS_FETCH()Kalle Sommer Nielsen2010-08-181-2/+2
|
* improved performance of FastCGI request parsingDmitry Stogov2010-08-181-21/+5
|
* reduced request processing overheadDmitry Stogov2010-07-051-1/+2
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Fixed FCGI_GET_VALUES requests (fixes #45522)Arnaud Le Blanc2008-10-211-0/+4
|
* Fixed bug #45786 (FastCGI process exited unexpectedly)Dmitry Stogov2008-08-261-1/+2
|
* Fix for bug #45786 (FastCGI process exited unexpectedly)Dmitry Stogov2008-08-181-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed crash on "php -b 1234 -unknown-option"Dmitry Stogov2007-05-211-0/+1
|
* Improved FastCGI SAPI to support external pipe and socket servers on win32Dmitry Stogov2007-03-281-0/+3
|
* Fixed bug #40414 (possivle endless fork() loop when running fastcgi)Dmitry Stogov2007-02-151-0/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - Removed source compatibility with libfcgiDmitry Stogov2006-05-151-52/+5
| | | | | | | - Optimized access to FastCGI environment using HashTable instead of linear search - Allowed PHP_FCGI_MAX_REQUESTS=0 to disable PHP die - Allowed PHP_FCGI_CHILDREN=0 to disable PHP spawn workers
* Fixed bug #37205 (incompatibility with mod_fastcgi)Dmitry Stogov2006-05-031-1/+0
|
* Proper fix for bug #37205Dmitry Stogov2006-04-271-0/+1
|
* Reimplement FastCGI interfaceDmitry Stogov2006-02-021-0/+183
Due to licensing restrictions that actually don't allow anybody to use the libfcgi code without prior approval from Open Market, which is impossible to obtain - we decided to reimplement this interface from scratch. The result is actually slightly faster, and more importantly, clear of any copyright issues.