comparison src/http/modules/ngx_http_headers_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 c9ad0d9c7d59
children 511a89da35ad
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
58 ngx_module_t ngx_http_headers_filter_module = { 58 ngx_module_t ngx_http_headers_filter_module = {
59 NGX_MODULE_V1, 59 NGX_MODULE_V1,
60 &ngx_http_headers_filter_module_ctx, /* module context */ 60 &ngx_http_headers_filter_module_ctx, /* module context */
61 ngx_http_headers_filter_commands, /* module directives */ 61 ngx_http_headers_filter_commands, /* module directives */
62 NGX_HTTP_MODULE, /* module type */ 62 NGX_HTTP_MODULE, /* module type */
63 NULL, /* init master */
63 ngx_http_headers_filter_init, /* init module */ 64 ngx_http_headers_filter_init, /* init module */
64 NULL /* init process */ 65 NULL, /* init process */
66 NULL, /* init thread */
67 NULL, /* exit thread */
68 NULL, /* exit process */
69 NULL, /* exit master */
70 NGX_MODULE_V1_PADDING
65 }; 71 };
66 72
67 73
68 static ngx_http_output_header_filter_pt ngx_http_next_header_filter; 74 static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
69 75