comparison src/core/ngx_core.h @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children 4b2dafa26fe2
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #ifndef _NGX_CORE_H_INCLUDED_
8 #define _NGX_CORE_H_INCLUDED_
9
10
11 typedef struct ngx_module_s ngx_module_t;
12 typedef struct ngx_conf_s ngx_conf_t;
13 typedef struct ngx_cycle_s ngx_cycle_t;
14 typedef struct ngx_pool_s ngx_pool_t;
15 typedef struct ngx_log_s ngx_log_t;
16 typedef struct ngx_array_s ngx_array_t;
17 typedef struct ngx_open_file_s ngx_open_file_t;
18 typedef struct ngx_command_s ngx_command_t;
19 typedef struct ngx_file_s ngx_file_t;
20 typedef struct ngx_event_s ngx_event_t;
21 typedef struct ngx_connection_s ngx_connection_t;
22
23 typedef void (*ngx_event_handler_pt)(ngx_event_t *ev);
24
25
26
27 #define NGX_OK 0
28 #define NGX_ERROR -1
29 #define NGX_AGAIN -2
30 #define NGX_BUSY -3
31 #define NGX_DONE -4
32 #define NGX_DECLINED -5
33 #define NGX_ABORT -6
34
35
36 #include <ngx_atomic.h>
37 #include <ngx_time.h>
38 #include <ngx_socket.h>
39 #include <ngx_errno.h>
40 #include <ngx_types.h>
41 #include <ngx_shared.h>
42 #include <ngx_process.h>
43 #include <ngx_thread.h>
44 #include <ngx_user.h>
45 #include <ngx_string.h>
46 #include <ngx_parse.h>
47 #include <ngx_log.h>
48 #include <ngx_alloc.h>
49 #include <ngx_palloc.h>
50 #include <ngx_buf.h>
51 #include <ngx_array.h>
52 #include <ngx_list.h>
53 #include <ngx_table.h>
54 #include <ngx_file.h>
55 #include <ngx_files.h>
56 #include <ngx_crc.h>
57 #if (HAVE_PCRE)
58 #include <ngx_regex.h>
59 #endif
60 #include <ngx_rbtree.h>
61 #include <ngx_times.h>
62 #include <ngx_inet.h>
63 #include <ngx_cycle.h>
64 #include <ngx_process_cycle.h>
65 #include <ngx_conf_file.h>
66 #include <ngx_os.h>
67 #if (NGX_OPENSSL)
68 #include <ngx_event_openssl.h>
69 #endif
70 #include <ngx_connection.h>
71
72
73 #define LF (u_char) 10
74 #define CR (u_char) 13
75 #define CRLF "\x0d\x0a"
76
77
78 #endif /* _NGX_CORE_H_INCLUDED_ */