comparison src/http/ngx_http.c @ 100:7ebc8b7fb816

nginx-0.0.1-2003-06-03-19:42:58 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 03 Jun 2003 15:42:58 +0000
parents c9b243802a17
children 6dfda4cf5200
comparison
equal deleted inserted replaced
99:a059e1aa65d4 100:7ebc8b7fb816
1 1
2 #include <ngx_config.h> 2 #include <ngx_config.h>
3 3 #include <ngx_core.h>
4 #include <ngx_string.h> 4
5 #include <ngx_socket.h>
6 #include <ngx_listen.h> 5 #include <ngx_listen.h>
7 #include <ngx_inet.h> 6
8 #include <ngx_http.h> 7 #include <ngx_http.h>
9 #include <ngx_http_config.h>
10 #include <ngx_http_core_module.h>
11 8
12 9
13 static void ngx_http_init_filters(ngx_pool_t *pool, ngx_module_t **modules); 10 static void ngx_http_init_filters(ngx_pool_t *pool, ngx_module_t **modules);
14 static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); 11 static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
15 12