comparison src/http/modules/ngx_http_charset_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 e5d7d0334fdb
children 7bd37aef1e7e
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
119 ngx_module_t ngx_http_charset_filter_module = { 119 ngx_module_t ngx_http_charset_filter_module = {
120 NGX_MODULE_V1, 120 NGX_MODULE_V1,
121 &ngx_http_charset_filter_module_ctx, /* module context */ 121 &ngx_http_charset_filter_module_ctx, /* module context */
122 ngx_http_charset_filter_commands, /* module directives */ 122 ngx_http_charset_filter_commands, /* module directives */
123 NGX_HTTP_MODULE, /* module type */ 123 NGX_HTTP_MODULE, /* module type */
124 NULL, /* init master */
124 ngx_http_charset_filter_init, /* init module */ 125 ngx_http_charset_filter_init, /* init module */
125 NULL /* init process */ 126 NULL, /* init process */
127 NULL, /* init thread */
128 NULL, /* exit thread */
129 NULL, /* exit process */
130 NULL, /* exit master */
131 NGX_MODULE_V1_PADDING
126 }; 132 };
127 133
128 134
129 static ngx_http_output_header_filter_pt ngx_http_next_header_filter; 135 static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
130 static ngx_http_output_body_filter_pt ngx_http_next_body_filter; 136 static ngx_http_output_body_filter_pt ngx_http_next_body_filter;