comparison src/http/modules/ngx_http_ssi_filter_module.c @ 541:b09ee85d0ac8 release-0.1.45

nginx-0.1.45-RELEASE import *) Change: the "ssl_engine" directive was canceled in the ngx_http_ssl_module and now is introduced at global level. *) Bugfix: the responses with SSI subrequests did not transferred via SSL connection. *) Various bug fixes in the IMAP/POP3 proxy.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 08 Sep 2005 14:36:09 +0000
parents d6e48c08d718
children 818fbd4750b9
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
198 ngx_module_t ngx_http_ssi_filter_module = { 198 ngx_module_t ngx_http_ssi_filter_module = {
199 NGX_MODULE_V1, 199 NGX_MODULE_V1,
200 &ngx_http_ssi_filter_module_ctx, /* module context */ 200 &ngx_http_ssi_filter_module_ctx, /* module context */
201 ngx_http_ssi_filter_commands, /* module directives */ 201 ngx_http_ssi_filter_commands, /* module directives */
202 NGX_HTTP_MODULE, /* module type */ 202 NGX_HTTP_MODULE, /* module type */
203 NULL, /* init master */
203 ngx_http_ssi_filter_init, /* init module */ 204 ngx_http_ssi_filter_init, /* init module */
204 NULL /* init process */ 205 NULL, /* init process */
206 NULL, /* init thread */
207 NULL, /* exit thread */
208 NULL, /* exit process */
209 NULL, /* exit master */
210 NGX_MODULE_V1_PADDING
205 }; 211 };
206 212
207 213
208 static ngx_int_t (*ngx_http_next_header_filter) (ngx_http_request_t *r); 214 static ngx_int_t (*ngx_http_next_header_filter) (ngx_http_request_t *r);
209 static ngx_int_t (*ngx_http_next_body_filter) (ngx_http_request_t *r, 215 static ngx_int_t (*ngx_http_next_body_filter) (ngx_http_request_t *r,