comparison src/http/ngx_http_header_filter_module.c @ 186:54aabf2b0bc6 NGINX_0_3_40

nginx 0.3.40 *) Feature: the ngx_http_dav_module supports the MKCOL method. *) Feature: the "create_full_put_path" directive. *) Feature: the "$limit_rate" variable.
author Igor Sysoev <http://sysoev.ru>
date Wed, 19 Apr 2006 00:00:00 +0400
parents 13710a1813ad
children 3866d57d9cfd
comparison
equal deleted inserted replaced
185:a9c5dc369ffe 186:54aabf2b0bc6
91 ngx_string("413 Request Entity Too Large"), 91 ngx_string("413 Request Entity Too Large"),
92 ngx_null_string, /* "414 Request-URI Too Large", but we never send it 92 ngx_null_string, /* "414 Request-URI Too Large", but we never send it
93 * because we treat such requests as the HTTP/0.9 93 * because we treat such requests as the HTTP/0.9
94 * requests and send only a body without a header 94 * requests and send only a body without a header
95 */ 95 */
96 ngx_null_string, /* "415 Unsupported Media Type" */ 96 ngx_string("415 Unsupported Media Type"),
97 ngx_string("416 Requested Range Not Satisfiable"), 97 ngx_string("416 Requested Range Not Satisfiable"),
98 98
99 /* ngx_null_string, */ /* "417 Expectation Failed" */ 99 /* ngx_null_string, */ /* "417 Expectation Failed" */
100 /* ngx_null_string, */ /* "418 unused" */ 100 /* ngx_null_string, */ /* "418 unused" */
101 /* ngx_null_string, */ /* "419 unused" */ 101 /* ngx_null_string, */ /* "419 unused" */
109 109
110 ngx_string("500 Internal Server Error"), 110 ngx_string("500 Internal Server Error"),
111 ngx_string("501 Method Not Implemented"), 111 ngx_string("501 Method Not Implemented"),
112 ngx_string("502 Bad Gateway"), 112 ngx_string("502 Bad Gateway"),
113 ngx_string("503 Service Temporarily Unavailable"), 113 ngx_string("503 Service Temporarily Unavailable"),
114 ngx_string("504 Gateway Time-out") 114 ngx_string("504 Gateway Time-out"),
115 115
116 /* ngx_null_string, */ /* "505 HTTP Version Not Supported" */ 116 ngx_null_string, /* "505 HTTP Version Not Supported" */
117 /* ngx_null_string, */ /* "506 Variant Also Negotiates" */ 117 ngx_null_string, /* "506 Variant Also Negotiates" */
118 /* ngx_null_string, */ /* "507 Insufficient Storage" */ 118 ngx_string("507 Insufficient Storage"),
119 /* ngx_null_string, */ /* "508 unused" */ 119 /* ngx_null_string, */ /* "508 unused" */
120 /* ngx_null_string, */ /* "509 unused" */ 120 /* ngx_null_string, */ /* "509 unused" */
121 /* ngx_null_string, */ /* "510 Not Extended" */ 121 /* ngx_null_string, */ /* "510 Not Extended" */
122 }; 122 };
123 123