Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move fastcgi.c to main | Xinchen Hui | 2015-05-19 | 1 | -151/+0 |
| | |||||
* | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | |||||
* | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -2/+2 |
| | |||||
* | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | Use better data structures (incomplete) | Dmitry Stogov | 2014-02-14 | 1 | -1/+1 |
| | |||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | Reduced overhead of FastCGI using near-perfect hash function and ↵ | Dmitry Stogov | 2010-09-01 | 1 | -0/+19 |
| | | | | predcalculated hash values. | ||||
* | Added apache compatible functions (apache_child_terminate, getallheaders, ↵ | Dmitry Stogov | 2010-08-27 | 1 | -0/+1 |
| | | | | apache_request_headers, apache_response_headers) to FastCGI SAPI | ||||
* | Use the TSRMLS_DC/TSRMLS_CC macros instead of TSRMLS_FETCH() | Kalle Sommer Nielsen | 2010-08-18 | 1 | -2/+2 |
| | |||||
* | improved performance of FastCGI request parsing | Dmitry Stogov | 2010-08-18 | 1 | -21/+5 |
| | |||||
* | reduced request processing overhead | Dmitry Stogov | 2010-07-05 | 1 | -1/+2 |
| | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: Fixed FCGI_GET_VALUES requests (fixes #45522) | Arnaud Le Blanc | 2008-10-21 | 1 | -0/+4 |
| | |||||
* | Fixed bug #45786 (FastCGI process exited unexpectedly) | Dmitry Stogov | 2008-08-26 | 1 | -1/+2 |
| | |||||
* | Fix for bug #45786 (FastCGI process exited unexpectedly) | Dmitry Stogov | 2008-08-18 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Fixed crash on "php -b 1234 -unknown-option" | Dmitry Stogov | 2007-05-21 | 1 | -0/+1 |
| | |||||
* | Improved FastCGI SAPI to support external pipe and socket servers on win32 | Dmitry Stogov | 2007-03-28 | 1 | -0/+3 |
| | |||||
* | Fixed bug #40414 (possivle endless fork() loop when running fastcgi) | Dmitry Stogov | 2007-02-15 | 1 | -0/+1 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | - Removed source compatibility with libfcgi | Dmitry Stogov | 2006-05-15 | 1 | -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 Stogov | 2006-05-03 | 1 | -1/+0 |
| | |||||
* | Proper fix for bug #37205 | Dmitry Stogov | 2006-04-27 | 1 | -0/+1 |
| | |||||
* | Reimplement FastCGI interface | Dmitry Stogov | 2006-02-02 | 1 | -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. |