diff options
author | Xinchen Hui <laruence@php.net> | 2014-06-18 23:37:47 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-06-18 23:37:47 +0800 |
commit | 17f35c9a295a55b8af09a5c8ba7dbc8894d3861b (patch) | |
tree | cbd1f091c85ea6bbd361196244d4aa7bc3f04ad4 /sapi/cli/php_cli_server.c | |
parent | b38f6f3de96990163d36c82c248fb29e6f0815c4 (diff) | |
parent | b108267f2c5c09bd153cfb1d4e580d5fc9c52d51 (diff) | |
download | php-git-17f35c9a295a55b8af09a5c8ba7dbc8894d3861b.tar.gz |
Merge branch 'phpng' of git.php.net:php-src into phpng
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r-- | sapi/cli/php_cli_server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c index 0eab71c868..85881bcab5 100644 --- a/sapi/cli/php_cli_server.c +++ b/sapi/cli/php_cli_server.c @@ -220,6 +220,7 @@ static php_cli_server_http_response_status_code_pair status_map[] = { { 304, "Not Modified" }, { 305, "Use Proxy" }, { 307, "Temporary Redirect" }, + { 308, "Permanent Redirect" }, { 400, "Bad Request" }, { 401, "Unauthorized" }, { 402, "Payment Required" }, @@ -238,6 +239,7 @@ static php_cli_server_http_response_status_code_pair status_map[] = { { 415, "Unsupported Media Type" }, { 416, "Requested Range Not Satisfiable" }, { 417, "Expectation Failed" }, + { 426, "Upgrade Required" }, { 428, "Precondition Required" }, { 429, "Too Many Requests" }, { 431, "Request Header Fields Too Large" }, |