comparison src/http/modules/ngx_http_ssi_filter_module.h @ 244:500a3242dff6 NGINX_0_4_7

nginx 0.4.7 *) Feature: the ngx_http_flv_module. *) Feature: the $request_body_file variable. *) Feature: the "charset" and "source_charset" directives support the variables. *) Bugfix: if an "include" SSI command were before another "include" SSI command with an "wait" parameter, then the "wait" parameter might not work. *) Bugfix: if the "proxy_buffering off" directive was used or while working with memcached the connections might not be closed on timeout. *) Bugfix: nginx did not run on 64-bit platforms except amd64, sparc64, and ppc64.
author Igor Sysoev <http://sysoev.ru>
date Tue, 10 Oct 2006 00:00:00 +0400
parents fa32d59d9a15
children acd2ec3541cb
comparison
equal deleted inserted replaced
243:d371c9d33781 244:500a3242dff6
61 61
62 unsigned conditional:2; 62 unsigned conditional:2;
63 unsigned block:1; 63 unsigned block:1;
64 unsigned output:1; 64 unsigned output:1;
65 unsigned output_chosen:1; 65 unsigned output_chosen:1;
66 unsigned wait:1;
67 66
67 ngx_http_request_t *wait;
68 void *value_buf; 68 void *value_buf;
69 ngx_str_t timefmt; 69 ngx_str_t timefmt;
70 ngx_str_t errmsg; 70 ngx_str_t errmsg;
71 } ngx_http_ssi_ctx_t; 71 } ngx_http_ssi_ctx_t;
72 72