comparison src/http/ngx_http.c @ 216:f1d0e5f09c1e

nginx-0.0.1-2003-12-25-23:26:58 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 25 Dec 2003 20:26:58 +0000
parents f536f91e8e99
children 86e473b5641e
comparison
equal deleted inserted replaced
215:5adc2b75f8a5 216:f1d0e5f09c1e
48 { 48 {
49 int mi, m, s, l, p, a, n; 49 int mi, m, s, l, p, a, n;
50 int port_found, addr_found, virtual_names; 50 int port_found, addr_found, virtual_names;
51 char *rv; 51 char *rv;
52 struct sockaddr_in *addr_in; 52 struct sockaddr_in *addr_in;
53 ngx_conf_t pcf;
53 ngx_array_t in_ports; 54 ngx_array_t in_ports;
54 ngx_listening_t *ls; 55 ngx_listening_t *ls;
56 ngx_http_listen_t *lscf;
55 ngx_http_module_t *module; 57 ngx_http_module_t *module;
56 ngx_conf_t pcf;
57 ngx_http_handler_pt *h; 58 ngx_http_handler_pt *h;
58 ngx_http_conf_ctx_t *ctx; 59 ngx_http_conf_ctx_t *ctx;
59 ngx_http_in_port_t *in_port, *inport; 60 ngx_http_in_port_t *in_port, *inport;
60 ngx_http_in_addr_t *in_addr, *inaddr; 61 ngx_http_in_addr_t *in_addr, *inaddr;
61 ngx_http_core_main_conf_t *cmcf; 62 ngx_http_server_name_t *s_name, *name;
62 ngx_http_core_srv_conf_t **cscfp, *cscf; 63 ngx_http_core_srv_conf_t **cscfp, *cscf;
63 ngx_http_core_loc_conf_t **clcfp, *clcf; 64 ngx_http_core_loc_conf_t **clcfp, *clcf;
64 ngx_http_listen_t *lscf; 65 ngx_http_core_main_conf_t *cmcf;
65 ngx_http_server_name_t *s_name, *name;
66 #if (WIN32) 66 #if (WIN32)
67 ngx_iocp_conf_t *iocpcf; 67 ngx_iocp_conf_t *iocpcf;
68 #endif 68 #endif
69 69
70 /* the main http context */ 70 /* the main http context */