comparison src/http/ngx_http_header_filter_module.c @ 578:bc110f60c0de NGINX_0_8_41

nginx 0.8.41 *) Security: nginx/Windows worker might be terminated abnormally if a requested file name has invalid UTF-8 encoding. *) Change: now nginx allows to use spaces in a request line. *) Bugfix: the "proxy_redirect" directive changed incorrectly a backend "Refresh" response header line. Thanks to Andrey Andreew and Max Sogin. *) Bugfix: nginx did not support path without host name in "Destination" request header line.
author Igor Sysoev <http://sysoev.ru>
date Tue, 15 Jun 2010 00:00:00 +0400
parents 8246d8a2c2be
children 4d3e880ce86c
comparison
equal deleted inserted replaced
577:dd4c3325a56f 578:bc110f60c0de
51 51
52 static ngx_str_t ngx_http_status_lines[] = { 52 static ngx_str_t ngx_http_status_lines[] = {
53 53
54 ngx_string("200 OK"), 54 ngx_string("200 OK"),
55 ngx_string("201 Created"), 55 ngx_string("201 Created"),
56 ngx_null_string, /* "202 Accepted" */ 56 ngx_string("202 Accepted"),
57 ngx_null_string, /* "203 Non-Authoritative Information" */ 57 ngx_null_string, /* "203 Non-Authoritative Information" */
58 ngx_string("204 No Content"), 58 ngx_string("204 No Content"),
59 ngx_null_string, /* "205 Reset Content" */ 59 ngx_null_string, /* "205 Reset Content" */
60 ngx_string("206 Partial Content"), 60 ngx_string("206 Partial Content"),
61 61