comparison src/http/ngx_http_postpone_filter_module.c @ 90:71c46860eb55 NGINX_0_1_45

nginx 0.1.45 *) 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 <http://sysoev.ru>
date Thu, 08 Sep 2005 00:00:00 +0400
parents da9a3b14312d
children f63280c59dd5
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
30 ngx_module_t ngx_http_postpone_filter_module = { 30 ngx_module_t ngx_http_postpone_filter_module = {
31 NGX_MODULE_V1, 31 NGX_MODULE_V1,
32 &ngx_http_postpone_filter_module_ctx, /* module context */ 32 &ngx_http_postpone_filter_module_ctx, /* module context */
33 NULL, /* module directives */ 33 NULL, /* module directives */
34 NGX_HTTP_MODULE, /* module type */ 34 NGX_HTTP_MODULE, /* module type */
35 NULL, /* init master */
35 ngx_http_postpone_filter_init, /* init module */ 36 ngx_http_postpone_filter_init, /* init module */
36 NULL /* init process */ 37 NULL, /* init process */
38 NULL, /* init thread */
39 NULL, /* exit thread */
40 NULL, /* exit process */
41 NULL, /* exit master */
42 NGX_MODULE_V1_PADDING
37 }; 43 };
38 44
39 45
40 static ngx_http_output_body_filter_pt ngx_http_next_filter; 46 static ngx_http_output_body_filter_pt ngx_http_next_filter;
41 47