summaryrefslogtreecommitdiff
path: root/sapi/cgi
Commit message (Collapse)AuthorAgeFilesLines
* Fix test (no charset outputed)Xinchen Hui2012-07-181-1/+1
|
* Fix broken apache_request_headers testRasmus Lerdorf2012-05-231-1/+3
| | | | | This test depends on the default_charset setting, so set it to UTF-8 for consistent output
* c++ commentsStanislav Malyshev2012-05-081-4/+4
|
* restore BCStanislav Malyshev2012-05-081-1/+1
|
* ws + restore BC to apache_request_headersStanislav Malyshev2012-05-081-7/+7
|
* fix bug #61807 - Buffer Overflow in apache_request_headersStanislav Malyshev2012-05-082-2/+57
|
* improve fix for CVE-2012-1823Stanislav Malyshev2012-05-071-3/+8
|
* Fix for CVE-2012-1823Rasmus Lerdorf2012-05-041-1/+14
|
* Merge branch 'PHP-5.3' into PHP-5.4Felipe Pena2012-04-191-3/+4
|\ | | | | | | | | * PHP-5.3: - Fixed bug #54197 ([PATH=] sections incompatibility with user_ini.filename set to null) patch by ab@php.net
| * - Fixed bug #54197 ([PATH=] sections incompatibility with user_ini.filename ↵Felipe Pena2012-04-191-3/+4
| | | | | | | | set to null) patch by ab@php.net
| * Fixed bug #61605 (header_remove() does not remove all headers)Xinchen Hui2012-04-041-0/+34
| |
| * Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831)Ondřej Surý2012-03-211-2/+4
| |
| * Always restore PG(magic_quote_gpc) on request shutdownDmitry Stogov2012-02-021-1/+3
| |
| * - Year++Felipe Pena2012-01-013-5/+5
| |
| * Fixed bug #60206 (possible integer overflow in content_length)Xinchen Hui2011-11-031-1/+1
| |
| * Fixed possible memory leakDmitry Stogov2011-08-111-1/+4
| |
| * Added checks for malformated FastCGI requests (Edgar Frank)Dmitry Stogov2011-01-191-4/+15
| |
| * - Year++Felipe Pena2011-01-013-5/+5
| |
| * - Reverted fix for bug #48930 (due binary compatibility breakage)Felipe Pena2010-06-291-2/+0
| |
| * - Improved initializationFelipe Pena2010-06-271-1/+1
| |
| * - Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)Felipe Pena2010-06-271-0/+2
| |
| * fix micro-memleaks (happened once per process)Antony Dovgal2010-06-081-0/+3
| |
| * - Fix #51688, ini per dir crashes when invalid document root are givenPierre Joye2010-04-301-0/+4
| |
* | Fixed bug Fixed bug #61605 (header_remove() does not remove all headers)Xinchen Hui2012-04-041-0/+34
| |
* | Fixed reinitialization of SAPI callbacks after php_module_startup()Dmitry Stogov2012-02-141-7/+9
| |
* | - Year++Felipe Pena2012-01-013-5/+5
| |
* | Fixed bug #60206 (possible integer overflow in content_length)Xinchen Hui2011-11-031-1/+1
| |
* | Fixed possible memory leakDmitry Stogov2011-08-111-1/+4
| |
* | Removed deadcodeIlia Alshanetsky2011-08-081-6/+0
| |
* | Good catch CoverityRasmus Lerdorf2011-08-071-0/+1
| |
* | - remove magic quotes support, functions are kept (see the NEWS entry for ↵Pierre Joye2011-07-221-5/+1
| | | | | | | | the details) for BC reasons but do not allow to set enable MQ
* | - Fix crash on cgiFelipe Pena2011-06-231-1/+2
| |
* | Added checks for malformated FastCGI requests (Edgar Frank)Dmitry Stogov2011-01-191-6/+6
| |
* | - Year++Felipe Pena2011-01-013-5/+5
| |
* | - Implemented FR #53271, FR #52410 (Building multiple PHP binary SAPIs and ↵Jani Taskinen2010-11-132-19/+22
| | | | | | | | | | | | | | one SAPI module the same time) # Bug #53271, Bug #52410
* | Reverted wrong patchDmitry Stogov2010-09-201-1/+1
| |
* | Fix incompatible types, we need to use a char here for recv()Kalle Sommer Nielsen2010-09-191-1/+1
| |
* | - unused, double declaredPierre Joye2010-09-151-1/+1
| |
* | Fixed bug #46723 (FastCGI persistent connection is incredibly slow due to ↵Dmitry Stogov2010-09-061-19/+49
| | | | | | | | TCP ack delay).
* | - Fixed compiler warning (missing return statement)Felipe Pena2010-09-011-0/+2
| |
* | Reduced overhead of FastCGI using near-perfect hash function and ↵Dmitry Stogov2010-09-013-161/+269
| | | | | | | | predcalculated hash values.
* | invalid lengthDmitry Stogov2010-09-011-1/+1
| |
* | Don't check FCGI_WEB_SERVER_ADDRS for UNIX socketsDmitry Stogov2010-08-271-7/+9
| |
* | Added apache compatible functions (apache_child_terminate, getallheaders, ↵Dmitry Stogov2010-08-273-1/+202
| | | | | | | | apache_request_headers, apache_response_headers) to FastCGI SAPI
* | Don't try to read the rest of malformed FCGI requests, close immediately. It ↵Dmitry Stogov2010-08-251-4/+6
| | | | | | | | saves one recv() call for proper FCGI request.
* | wsDmitry Stogov2010-08-251-34/+34
| |
* | Nuke compiler warning, wrong fix that shouldn't have been in the previously ↵Kalle Sommer Nielsen2010-08-181-1/+1
| | | | | | | | commit
* | Pass the TSRMS pointers to sapi_module_struct.log_message, this saves some ↵Kalle Sommer Nielsen2010-08-181-3/+1
| | | | | | | | TSRMLS_FETCH() calls in a few of our SAPI's
* | Use the TSRMLS_DC/TSRMLS_CC macros instead of TSRMLS_FETCH()Kalle Sommer Nielsen2010-08-183-12/+10
| |
* | Fixed ZTS buildDmitry Stogov2010-08-181-1/+3
| |