comparison src/http/modules/ngx_http_stub_status_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 4d9ea73a627a
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
39 ngx_module_t ngx_http_stub_status_module = { 39 ngx_module_t ngx_http_stub_status_module = {
40 NGX_MODULE_V1, 40 NGX_MODULE_V1,
41 &ngx_http_stub_status_module_ctx, /* module context */ 41 &ngx_http_stub_status_module_ctx, /* module context */
42 ngx_http_status_commands, /* module directives */ 42 ngx_http_status_commands, /* module directives */
43 NGX_HTTP_MODULE, /* module type */ 43 NGX_HTTP_MODULE, /* module type */
44 NULL, /* init master */
44 NULL, /* init module */ 45 NULL, /* init module */
45 NULL /* init process */ 46 NULL, /* init process */
47 NULL, /* init thread */
48 NULL, /* exit thread */
49 NULL, /* exit process */
50 NULL, /* exit master */
51 NGX_MODULE_V1_PADDING
46 }; 52 };
47 53
48 54
49 static ngx_int_t ngx_http_status_handler(ngx_http_request_t *r) 55 static ngx_int_t ngx_http_status_handler(ngx_http_request_t *r)
50 { 56 {