comparison src/core/ngx_core.h @ 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 a059e1aa65d4
children 7db96f59bc29
comparison
equal deleted inserted replaced
99:a059e1aa65d4 100:7ebc8b7fb816
3 3
4 4
5 #include <ngx_types.h> 5 #include <ngx_types.h>
6 #include <ngx_time.h> 6 #include <ngx_time.h>
7 #include <ngx_socket.h> 7 #include <ngx_socket.h>
8 #include <ngx_files.h>
9 #include <ngx_errno.h> 8 #include <ngx_errno.h>
10 #include <ngx_process.h> 9 #include <ngx_process.h>
11 10
11 typedef struct ngx_module_s ngx_module_t;
12 typedef struct ngx_conf_s ngx_conf_t;
13 typedef struct ngx_command_s ngx_command_t;
14
15 typedef struct ngx_file_s ngx_file_t;
16 typedef struct ngx_event_s ngx_event_t;
12 typedef struct ngx_connection_s ngx_connection_t; 17 typedef struct ngx_connection_s ngx_connection_t;
13 typedef struct ngx_event_s ngx_event_t;
14 18
15 #include <ngx_log.h> 19 #include <ngx_log.h>
16 #include <ngx_alloc.h> 20 #include <ngx_alloc.h>
21 #include <ngx_string.h>
17 #include <ngx_hunk.h> 22 #include <ngx_hunk.h>
18 #include <ngx_array.h> 23 #include <ngx_array.h>
19 #include <ngx_string.h> 24 #include <ngx_table.h>
20 #include <ngx_file.h> 25 #include <ngx_file.h>
26 #include <ngx_files.h>
21 #include <ngx_inet.h> 27 #include <ngx_inet.h>
22 #include <ngx_conf_file.h> 28 #include <ngx_conf_file.h>
23 #include <ngx_os_init.h> 29 #include <ngx_os_init.h>
24 #include <ngx_connection.h> 30 #include <ngx_connection.h>
25 31