comparison src/core/ngx_connection.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 2e069b6e6920
comparison
equal deleted inserted replaced
99:a059e1aa65d4 100:7ebc8b7fb816
1 #ifndef _NGX_CONNECTION_H_INCLUDED_ 1 #ifndef _NGX_CONNECTION_H_INCLUDED_
2 #define _NGX_CONNECTION_H_INCLUDED_ 2 #define _NGX_CONNECTION_H_INCLUDED_
3 3
4 #include <ngx_config.h>
4 #include <ngx_core.h> 5 #include <ngx_core.h>
6 #include <ngx_event.h>
5 7
6 #if 0
7 #include <ngx_socket.h>
8 #include <ngx_log.h>
9 #include <ngx_alloc.h>
10 #include <ngx_hunk.h>
11 #include <ngx_array.h>
12 #include <ngx_string.h>
13
14 #include <ngx_server.h>
15 #endif
16
17 #if 0
18 typedef struct ngx_connection_s ngx_connection_t;
19 #endif
20
21 #ifdef NGX_EVENT
22 #include <ngx_event.h>
23 #endif
24 8
25 struct ngx_connection_s { 9 struct ngx_connection_s {
26 ngx_socket_t fd; 10 ngx_socket_t fd;
27 void *data; 11 void *data;
28 12