comparison src/http/modules/ngx_http_range_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
71 ngx_module_t ngx_http_range_header_filter_module = { 71 ngx_module_t ngx_http_range_header_filter_module = {
72 NGX_MODULE_V1, 72 NGX_MODULE_V1,
73 &ngx_http_range_header_filter_module_ctx, /* module context */ 73 &ngx_http_range_header_filter_module_ctx, /* module context */
74 NULL, /* module directives */ 74 NULL, /* module directives */
75 NGX_HTTP_MODULE, /* module type */ 75 NGX_HTTP_MODULE, /* module type */
76 NULL, /* init master */
76 ngx_http_range_header_filter_init, /* init module */ 77 ngx_http_range_header_filter_init, /* init module */
77 NULL /* init process */ 78 NULL, /* init process */
79 NULL, /* init thread */
80 NULL, /* exit thread */
81 NULL, /* exit process */
82 NULL, /* exit master */
83 NGX_MODULE_V1_PADDING
78 }; 84 };
79 85
80 86
81 static ngx_http_module_t ngx_http_range_body_filter_module_ctx = { 87 static ngx_http_module_t ngx_http_range_body_filter_module_ctx = {
82 NULL, /* preconfiguration */ 88 NULL, /* preconfiguration */
96 ngx_module_t ngx_http_range_body_filter_module = { 102 ngx_module_t ngx_http_range_body_filter_module = {
97 NGX_MODULE_V1, 103 NGX_MODULE_V1,
98 &ngx_http_range_body_filter_module_ctx, /* module context */ 104 &ngx_http_range_body_filter_module_ctx, /* module context */
99 NULL, /* module directives */ 105 NULL, /* module directives */
100 NGX_HTTP_MODULE, /* module type */ 106 NGX_HTTP_MODULE, /* module type */
107 NULL, /* init master */
101 ngx_http_range_body_filter_init, /* init module */ 108 ngx_http_range_body_filter_init, /* init module */
102 NULL /* init process */ 109 NULL, /* init process */
110 NULL, /* init thread */
111 NULL, /* exit thread */
112 NULL, /* exit process */
113 NULL, /* exit master */
114 NGX_MODULE_V1_PADDING
103 }; 115 };
104 116
105 117
106 static ngx_http_output_header_filter_pt ngx_http_next_header_filter; 118 static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
107 static ngx_http_output_body_filter_pt ngx_http_next_body_filter; 119 static ngx_http_output_body_filter_pt ngx_http_next_body_filter;