summaryrefslogtreecommitdiff
path: root/sapi/cli/php_http_parser.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix expression warnings and break warningstwosee2020-06-071-1/+1
| | | | Close GH-5675.
* Fix [-Wundef] warning in CLI SAPIGeorge Peter Banyard2020-05-121-1/+1
|
* Fix bug 60471 by correctly identifying unused speculative preconnectionsSammy Kaye Powers2017-04-111-69/+0
| | | | | | | | | * Correctly identify unused speculative preconnections from browsers like Chrome and Firefox * Add a new message to the debug level that is emitted when a TCP connection is closed without sending any request (a preconnection) * Fix an issue where the existing debug messages were not being displayed even when debug mode was enabled
* Fixed compilation warningsDmitry Stogov2016-06-211-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Nikita Popov2016-03-031-1/+4
|\
| * Fixed bug #69953Christoph M. Becker2016-03-031-1/+4
| | | | | | | | Added support for MKCALENDAR request method in CLI web server.
* | http parser code assumes char is signedAnton Blanchard2015-07-061-1/+2
| | | | | | | | | | | | | | A char can be either signed or unsigned, and on PowerPC and ARM it is unsigned. The following code will always be false on these architectures: if (c == -1) goto error;
* | Merge branch 'PHP-5.6'Christoph M. Becker2015-06-271-2/+9
|\ \ | |/ | | | | | | | | * PHP-5.6: updated NEWS Fixed #69655: php -S changes MKCALENDAR request method to MKCOL
| * Fixed #69655: php -S changes MKCALENDAR request method to MKCOLChristoph M. Becker2015-06-271-2/+9
| | | | | | | | | | The parsing of the request method in the CLI server has been faulty, so that several unsupported methods have been recognized as other methods.
| * typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ext/ftp/ftp.h ext/pcre/pcrelib/pcre_printint.c ext/pcre/pcrelib/sljit/sljitLir.c ext/pcre/pcrelib/sljit/sljitLir.h ext/pcre/pcrelib/sljit/sljitNativeARM_32.c ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c ext/pgsql/pgsql.c ext/phar/func_interceptors.c ext/soap/soap.c ext/standard/image.c
* | Add comment about SEARCH HTTP Verb being possible as wellMats Lindh2015-05-121-2/+1
| |
* | Add "SEARCH" as supported HTTP verb.Mats Lindh2015-05-121-0/+3
| | | | | | | | | | The "SEARCH" HTTP request method is described in RFC5323 as part of WebDAV, and allows a client to initiate a server side search.
* | typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-231-1/+1
| |
* | fix signed/unsigned mismatch warningAnatol Belski2014-10-101-2/+5
|/
* Merged GitHub PR #190: Support for the HTTP PATCH method in CLI webserverLars Strojny2012-09-181-0/+3
|
* Respond with 501 to unknown request methodsNiklas Lindgren2012-09-151-3/+4
| | | | | | | | Fixed typo Moved 501 response from dispatch to event_read_request Return return value of send_error_page
* - undefine CALLBACK (btw, generic names like that should be avoided, w/o ↵Pierre Joye2011-08-191-1/+3
| | | | prefix :)
* - do not use 64bit integer instead of size_t (can't be alloc'ed), or when ↵Pierre Joye2011-08-181-5/+5
| | | | the actual possible values are 32bit or lower only
* - Add built-in web server to CLI SAPI. See the RFC for detail.Moriyoshi Koizumi2011-06-201-0/+1602