comparison src/http/ngx_http_output_filter.c @ 24:77c7629a2627

nginx-0.0.1-2002-12-10-21:05:12 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 10 Dec 2002 18:05:12 +0000
parents f540a63026c9
children 53cb81681040
comparison
equal deleted inserted replaced
23:f540a63026c9 24:77c7629a2627
18 static ngx_command_t ngx_http_output_filter_commands[]; 18 static ngx_command_t ngx_http_output_filter_commands[];
19 19
20 20
21 ngx_http_module_t ngx_http_output_filter_module = { 21 ngx_http_module_t ngx_http_output_filter_module = {
22 NGX_HTTP_MODULE, 22 NGX_HTTP_MODULE,
23
23 NULL, /* create server config */ 24 NULL, /* create server config */
24 ngx_http_output_filter_create_conf, /* create location config */ 25 ngx_http_output_filter_create_conf, /* create location config */
25 ngx_http_output_filter_commands, /* module directives */ 26 ngx_http_output_filter_commands, /* module directives */
27
26 NULL, /* init module */ 28 NULL, /* init module */
29 NULL, /* translate handler */
30
27 ngx_http_output_filter_init /* init output body filter */ 31 ngx_http_output_filter_init /* init output body filter */
28 }; 32 };
29 33
30 34
31 static ngx_command_t ngx_http_output_filter_commands[] = { 35 static ngx_command_t ngx_http_output_filter_commands[] = {