comparison src/core/ngx_core.h @ 92:19cc647ecd91

nginx-0.0.1-2003-05-20-19:37:55 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 20 May 2003 15:37:55 +0000
parents 637625a2acdb
children 738fe44c70d5
comparison
equal deleted inserted replaced
91:637625a2acdb 92:19cc647ecd91
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> 8 #include <ngx_files.h>
9 #include <ngx_errno.h>
10 #include <ngx_process.h>
11
12 typedef struct ngx_connection_s ngx_connection_t;
13 typedef struct ngx_event_s ngx_event_t;
9 14
10 #include <ngx_log.h> 15 #include <ngx_log.h>
11 #include <ngx_alloc.h> 16 #include <ngx_alloc.h>
12 #include <ngx_hunk.h> 17 #include <ngx_hunk.h>
13 #include <ngx_array.h> 18 #include <ngx_array.h>
14 #include <ngx_string.h> 19 #include <ngx_string.h>
15 #include <ngx_file.h> 20 #include <ngx_file.h>
16 #include <ngx_conf_file.h> 21 #include <ngx_conf_file.h>
22 #include <ngx_os_init.h>
17 #include <ngx_connection.h> 23 #include <ngx_connection.h>
18 #include <ngx_os_init.h>
19 24
20 25
21 26
22 #define NGX_OK 0 27 #define NGX_OK 0
23 #define NGX_ERROR -1 28 #define NGX_ERROR -1
36 /* 41 /*
37 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN 42 #define NGX_MAXHOSTNAMELEN MAXHOSTNAMELEN
38 */ 43 */
39 44
40 45
46 /* STUB */
47 extern ngx_log_t ngx_log;
48
49
41 #endif /* _NGX_CORE_H_INCLUDED_ */ 50 #endif /* _NGX_CORE_H_INCLUDED_ */