comparison src/http/ngx_http_header_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 8ad297c88dcb
children f63280c59dd5
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
32 ngx_module_t ngx_http_header_filter_module = { 32 ngx_module_t ngx_http_header_filter_module = {
33 NGX_MODULE_V1, 33 NGX_MODULE_V1,
34 &ngx_http_header_filter_module_ctx, /* module context */ 34 &ngx_http_header_filter_module_ctx, /* module context */
35 NULL, /* module directives */ 35 NULL, /* module directives */
36 NGX_HTTP_MODULE, /* module type */ 36 NGX_HTTP_MODULE, /* module type */
37 NULL, /* init master */
37 ngx_http_header_filter_init, /* init module */ 38 ngx_http_header_filter_init, /* init module */
38 NULL /* init process */ 39 NULL, /* init process */
40 NULL, /* init thread */
41 NULL, /* exit thread */
42 NULL, /* exit process */
43 NULL, /* exit master */
44 NGX_MODULE_V1_PADDING
39 }; 45 };
40 46
41 47
42 static char ngx_http_server_string[] = "Server: " NGINX_VER CRLF; 48 static char ngx_http_server_string[] = "Server: " NGINX_VER CRLF;
43 49