comparison src/http/modules/ngx_http_not_modified_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 9b8c906f6e63
children 45033d85b30e
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
31 ngx_module_t ngx_http_not_modified_filter_module = { 31 ngx_module_t ngx_http_not_modified_filter_module = {
32 NGX_MODULE_V1, 32 NGX_MODULE_V1,
33 &ngx_http_not_modified_filter_module_ctx, /* module context */ 33 &ngx_http_not_modified_filter_module_ctx, /* module context */
34 NULL, /* module directives */ 34 NULL, /* module directives */
35 NGX_HTTP_MODULE, /* module type */ 35 NGX_HTTP_MODULE, /* module type */
36 NULL, /* init master */
36 ngx_http_not_modified_filter_init, /* init module */ 37 ngx_http_not_modified_filter_init, /* init module */
37 NULL /* init process */ 38 NULL, /* init process */
39 NULL, /* init thread */
40 NULL, /* exit thread */
41 NULL, /* exit process */
42 NULL, /* exit master */
43 NGX_MODULE_V1_PADDING
38 }; 44 };
39 45
40 46
41 static ngx_http_output_header_filter_pt ngx_http_next_header_filter; 47 static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
42 48