comparison src/http/ngx_http_output_filter.c @ 116:571bcbff82c5

nginx-0.0.1-2003-07-11-08:50:59 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 11 Jul 2003 04:50:59 +0000
parents 7db96f59bc29
children cd54bcbaf3b5
comparison
equal deleted inserted replaced
115:be27f922b9a2 116:571bcbff82c5
51 ngx_module_t ngx_http_output_filter_module = { 51 ngx_module_t ngx_http_output_filter_module = {
52 NGX_MODULE, 52 NGX_MODULE,
53 &ngx_http_output_filter_module_ctx, /* module context */ 53 &ngx_http_output_filter_module_ctx, /* module context */
54 ngx_http_output_filter_commands, /* module directives */ 54 ngx_http_output_filter_commands, /* module directives */
55 NGX_HTTP_MODULE, /* module type */ 55 NGX_HTTP_MODULE, /* module type */
56 NULL /* init module */ 56 NULL, /* init module */
57 NULL /* init child */
57 }; 58 };
58 59
59 60
60 #define next_filter (*ngx_http_top_body_filter) 61 #define next_filter (*ngx_http_top_body_filter)
61 62