comparison src/http/modules/ngx_http_gzip_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 818fbd4750b9
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
216 ngx_module_t ngx_http_gzip_filter_module = { 216 ngx_module_t ngx_http_gzip_filter_module = {
217 NGX_MODULE_V1, 217 NGX_MODULE_V1,
218 &ngx_http_gzip_filter_module_ctx, /* module context */ 218 &ngx_http_gzip_filter_module_ctx, /* module context */
219 ngx_http_gzip_filter_commands, /* module directives */ 219 ngx_http_gzip_filter_commands, /* module directives */
220 NGX_HTTP_MODULE, /* module type */ 220 NGX_HTTP_MODULE, /* module type */
221 NULL, /* init master */
221 ngx_http_gzip_filter_init, /* init module */ 222 ngx_http_gzip_filter_init, /* init module */
222 NULL /* init process */ 223 NULL, /* init process */
224 NULL, /* init thread */
225 NULL, /* exit thread */
226 NULL, /* exit process */
227 NULL, /* exit master */
228 NGX_MODULE_V1_PADDING
223 }; 229 };
224 230
225 231
226 static ngx_http_log_op_name_t ngx_http_gzip_log_fmt_ops[] = { 232 static ngx_http_log_op_name_t ngx_http_gzip_log_fmt_ops[] = {
227 { ngx_string("gzip_ratio"), NGX_INT32_LEN + 3, 233 { ngx_string("gzip_ratio"), NGX_INT32_LEN + 3,