comparison src/http/ngx_http_core_module.h @ 417:0526206251f6

nginx-0.0.10-2004-09-07-19:29:22 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 07 Sep 2004 15:29:22 +0000
parents 4765ded59eaa
children fda5987b188d
comparison
equal deleted inserted replaced
416:b9bd635011de 417:0526206251f6
7 #include <ngx_http.h> 7 #include <ngx_http.h>
8 8
9 9
10 typedef struct { 10 typedef struct {
11 in_addr_t addr; 11 in_addr_t addr;
12 int port; 12 in_port_t port;
13 int family; 13 int family;
14 ngx_str_t file_name; 14 ngx_str_t file_name;
15 int line; 15 int line;
16 16
17 unsigned default_server:1; 17 unsigned default_server:1;
76 76
77 77
78 /* list of structures to find core_srv_conf quickly at run time */ 78 /* list of structures to find core_srv_conf quickly at run time */
79 79
80 typedef struct { 80 typedef struct {
81 int port; 81 in_port_t port;
82 ngx_str_t port_name; 82 ngx_str_t port_name;
83 ngx_array_t addrs; /* array of ngx_http_in_addr_t */ 83 ngx_array_t addrs; /* array of ngx_http_in_addr_t */
84 } ngx_http_in_port_t; 84 } ngx_http_in_port_t;
85 85
86 86