comparison src/http/modules/ngx_http_ssi_filter_module.h @ 609:608cf78b24ef release-0.3.26

nginx-0.3.26-RELEASE import *) Change: the "optimize_host_names" directive was renamed to the "optimize_server_names". *) Bugfix: if in the "proxy_pass" directive was no the URI part, then the main request URI was transferred to a backend while proxying the SSI subrequest.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 03 Feb 2006 12:58:48 +0000
parents 9262f520ce21
children 65bf042c0b4f
comparison
equal deleted inserted replaced
608:a2777592385e 609:608cf78b24ef
13 #include <ngx_http.h> 13 #include <ngx_http.h>
14 14
15 15
16 #define NGX_HTTP_SSI_MAX_PARAMS 16 16 #define NGX_HTTP_SSI_MAX_PARAMS 16
17 17
18 #define NGX_HTTP_SSI_COMMAND_LEN 31 18 #define NGX_HTTP_SSI_COMMAND_LEN 32
19 #define NGX_HTTP_SSI_PARAM_LEN 31 19 #define NGX_HTTP_SSI_PARAM_LEN 32
20 #define NGX_HTTP_SSI_PARAMS_N 4 20 #define NGX_HTTP_SSI_PARAMS_N 4
21 21
22 22
23 typedef struct { 23 typedef struct {
24 ngx_hash_t hash; 24 ngx_hash_t hash;
54 54
55 ngx_array_t variables; 55 ngx_array_t variables;
56 56
57 ngx_uint_t output; /* unsigned output:1; */ 57 ngx_uint_t output; /* unsigned output:1; */
58 58
59 void *value_buf;
59 ngx_str_t timefmt; 60 ngx_str_t timefmt;
60 ngx_str_t errmsg; 61 ngx_str_t errmsg;
61 } ngx_http_ssi_ctx_t; 62 } ngx_http_ssi_ctx_t;
62 63
63 64