nginx/src/http/ngx_http.c

563 lines
19 KiB
C
Raw Normal View History

2002-08-16 23:27:03 +08:00
2002-08-20 22:48:28 +08:00
#include <ngx_config.h>
2003-06-03 23:42:58 +08:00
#include <ngx_core.h>
2003-06-11 23:28:34 +08:00
#include <ngx_event.h>
2002-08-16 23:27:03 +08:00
#include <ngx_http.h>
2003-05-27 20:18:54 +08:00
static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
2003-01-09 13:36:00 +08:00
int ngx_http_max_module;
2003-01-10 14:09:20 +08:00
2003-01-09 13:36:00 +08:00
int (*ngx_http_top_header_filter) (ngx_http_request_t *r);
2003-04-08 23:40:10 +08:00
int (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch);
2003-01-09 13:36:00 +08:00
static ngx_str_t http_name = ngx_string("http");
static ngx_command_t ngx_http_commands[] = {
{ngx_string("http"),
2003-05-15 01:13:13 +08:00
NGX_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
2003-01-09 13:36:00 +08:00
ngx_http_block,
0,
2003-05-15 23:42:53 +08:00
0,
NULL},
2003-01-09 13:36:00 +08:00
2003-05-27 20:18:54 +08:00
ngx_null_command
2003-01-09 13:36:00 +08:00
};
ngx_module_t ngx_http_module = {
2003-05-27 20:18:54 +08:00
NGX_MODULE,
2003-01-09 13:36:00 +08:00
&http_name, /* module context */
ngx_http_commands, /* module directives */
2003-05-27 20:18:54 +08:00
NGX_CORE_MODULE, /* module type */
2003-07-11 12:50:59 +08:00
NULL, /* init module */
NULL /* init child */
2003-01-09 13:36:00 +08:00
};
2003-05-27 20:18:54 +08:00
static char *ngx_http_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
2003-01-09 13:36:00 +08:00
{
2003-05-20 00:39:14 +08:00
int mi, m, s, l, p, a, n;
int port_found, addr_found, virtual_names;
char *rv;
struct sockaddr_in *addr_in;
ngx_array_t in_ports;
2003-06-11 23:28:34 +08:00
ngx_listening_t *ls;
2003-05-20 00:39:14 +08:00
ngx_http_module_t *module;
ngx_conf_t pcf;
ngx_http_conf_ctx_t *ctx;
ngx_http_in_port_t *in_port, *inport;
ngx_http_in_addr_t *in_addr, *inaddr;
ngx_http_core_main_conf_t *cmcf;
2003-06-11 23:28:34 +08:00
ngx_http_core_srv_conf_t **cscfp, *cscf;
2003-07-21 05:15:59 +08:00
ngx_http_core_loc_conf_t **clcfp, *clcf;
2003-05-20 00:39:14 +08:00
ngx_http_listen_t *lscf;
ngx_http_server_name_t *s_name, *name;
2003-06-11 23:28:34 +08:00
#if (WIN32)
ngx_iocp_conf_t *iocpcf;
#endif
2003-05-20 00:39:14 +08:00
/* the main http context */
2003-01-09 13:36:00 +08:00
ngx_test_null(ctx,
ngx_pcalloc(cf->pool, sizeof(ngx_http_conf_ctx_t)),
NGX_CONF_ERROR);
2003-05-16 23:27:48 +08:00
*(ngx_http_conf_ctx_t **) conf = ctx;
2003-05-20 00:39:14 +08:00
/* count the number of the http modules and set up their indices */
2003-04-08 23:40:10 +08:00
ngx_http_max_module = 0;
2003-05-20 00:39:14 +08:00
for (m = 0; ngx_modules[m]; m++) {
2003-05-27 20:18:54 +08:00
if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
2003-01-09 13:36:00 +08:00
continue;
}
2003-05-27 20:18:54 +08:00
ngx_modules[m]->ctx_index = ngx_http_max_module++;
2003-01-09 13:36:00 +08:00
}
2003-05-20 00:39:14 +08:00
/* the main http main_conf, it's the same in the all http contexts */
2003-05-16 23:27:48 +08:00
ngx_test_null(ctx->main_conf,
ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
NGX_CONF_ERROR);
2003-05-20 00:39:14 +08:00
/* the http null srv_conf, it's used to merge the server{}s' srv_conf's */
2003-05-16 23:27:48 +08:00
ngx_test_null(ctx->srv_conf,
ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
NGX_CONF_ERROR);
2003-05-20 00:39:14 +08:00
/* the http null loc_conf, it's used to merge the server{}s' loc_conf's */
2003-01-09 13:36:00 +08:00
ngx_test_null(ctx->loc_conf,
ngx_pcalloc(cf->pool, sizeof(void *) * ngx_http_max_module),
NGX_CONF_ERROR);
2003-05-20 00:39:14 +08:00
/* create the main_conf, srv_conf and loc_conf in all http modules */
for (m = 0; ngx_modules[m]; m++) {
2003-05-27 20:18:54 +08:00
if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
2003-01-09 13:36:00 +08:00
continue;
}
2003-05-27 20:18:54 +08:00
module = ngx_modules[m]->ctx;
mi = ngx_modules[m]->ctx_index;
2003-05-20 00:39:14 +08:00
if (module->create_main_conf) {
2003-07-21 05:15:59 +08:00
ngx_test_null(ctx->main_conf[mi], module->create_main_conf(cf),
2003-05-20 00:39:14 +08:00
NGX_CONF_ERROR);
}
if (module->create_srv_conf) {
2003-07-21 05:15:59 +08:00
ngx_test_null(ctx->srv_conf[mi], module->create_srv_conf(cf),
2003-05-20 00:39:14 +08:00
NGX_CONF_ERROR);
}
2003-01-09 13:36:00 +08:00
if (module->create_loc_conf) {
2003-07-21 05:15:59 +08:00
ngx_test_null(ctx->loc_conf[mi], module->create_loc_conf(cf),
2003-01-09 13:36:00 +08:00
NGX_CONF_ERROR);
}
}
2003-05-20 00:39:14 +08:00
/* parse inside the http{} block */
2003-05-16 23:27:48 +08:00
pcf = *cf;
2003-01-09 13:36:00 +08:00
cf->ctx = ctx;
2003-05-27 20:18:54 +08:00
cf->module_type = NGX_HTTP_MODULE;
2003-05-15 01:13:13 +08:00
cf->cmd_type = NGX_HTTP_MAIN_CONF;
2003-01-09 13:36:00 +08:00
rv = ngx_conf_parse(cf, NULL);
if (rv != NGX_CONF_OK) {
*cf = pcf;
2003-01-09 13:36:00 +08:00
return rv;
}
2003-01-09 13:36:00 +08:00
/*
* init http{} main_conf's, merge the server{}s' srv_conf's
* and its location{}s' loc_conf's
*/
2003-05-20 00:39:14 +08:00
2003-05-27 20:18:54 +08:00
cmcf = ctx->main_conf[ngx_http_core_module.ctx_index];
2003-05-30 22:27:59 +08:00
cscfp = cmcf->servers.elts;
2003-05-20 00:39:14 +08:00
for (m = 0; ngx_modules[m]; m++) {
2003-05-27 20:18:54 +08:00
if (ngx_modules[m]->type != NGX_HTTP_MODULE) {
2003-05-20 00:39:14 +08:00
continue;
}
2003-05-30 22:27:59 +08:00
module = ngx_modules[m]->ctx;
2003-05-27 20:18:54 +08:00
mi = ngx_modules[m]->ctx_index;
2003-05-20 00:39:14 +08:00
/* init http{} main_conf's */
if (module->init_main_conf) {
2003-07-21 05:15:59 +08:00
rv = module->init_main_conf(cf, ctx->main_conf[mi]);
2003-05-20 00:39:14 +08:00
if (rv != NGX_CONF_OK) {
return rv;
}
}
for (s = 0; s < cmcf->servers.nelts; s++) {
/* merge the server{}s' srv_conf's */
if (module->merge_srv_conf) {
2003-07-21 05:15:59 +08:00
rv = module->merge_srv_conf(cf,
2003-05-20 00:39:14 +08:00
ctx->srv_conf[mi],
cscfp[s]->ctx->srv_conf[mi]);
if (rv != NGX_CONF_OK) {
return rv;
}
}
if (module->merge_loc_conf) {
/* merge the server{}'s loc_conf */
2003-07-21 05:15:59 +08:00
rv = module->merge_loc_conf(cf,
2003-05-20 00:39:14 +08:00
ctx->loc_conf[mi],
cscfp[s]->ctx->loc_conf[mi]);
if (rv != NGX_CONF_OK) {
return rv;
}
/* merge the locations{}' loc_conf's */
clcfp = (ngx_http_core_loc_conf_t **)cscfp[s]->locations.elts;
for (l = 0; l < cscfp[s]->locations.nelts; l++) {
2003-07-21 05:15:59 +08:00
rv = module->merge_loc_conf(cf,
2003-05-20 00:39:14 +08:00
cscfp[s]->ctx->loc_conf[mi],
clcfp[l]->loc_conf[mi]);
if (rv != NGX_CONF_OK) {
return rv;
}
}
}
2003-01-28 23:56:37 +08:00
}
}
2003-05-20 00:39:14 +08:00
2003-10-13 00:49:16 +08:00
/* init lists of the handlers */
2003-01-28 23:56:37 +08:00
2003-10-10 23:10:50 +08:00
ngx_init_array(cmcf->phases[NGX_HTTP_REWRITE_PHASE].handlers,
cf->cycle->pool, 10, sizeof(ngx_http_handler_pt),
NGX_CONF_ERROR);
cmcf->phases[NGX_HTTP_REWRITE_PHASE].type = NGX_OK;
cmcf->phases[NGX_HTTP_REWRITE_PHASE].post_handler =
ngx_http_find_location_config;
ngx_init_array(cmcf->phases[NGX_HTTP_TRANSLATE_PHASE].handlers,
cf->cycle->pool, 10, sizeof(ngx_http_handler_pt),
NGX_CONF_ERROR);
cmcf->phases[NGX_HTTP_TRANSLATE_PHASE].type = NGX_OK;
2003-03-21 00:09:44 +08:00
2003-05-15 23:42:53 +08:00
/* create the lists of the ports, the addresses and the server names
to allow quickly find the server core module configuration at run-time */
2003-01-28 23:56:37 +08:00
2003-01-09 13:36:00 +08:00
ngx_init_array(in_ports, cf->pool, 10, sizeof(ngx_http_in_port_t),
NGX_CONF_ERROR);
2003-05-15 23:42:53 +08:00
/* "server" directives */
2003-05-30 22:27:59 +08:00
cscfp = cmcf->servers.elts;
2003-05-20 00:39:14 +08:00
for (s = 0; s < cmcf->servers.nelts; s++) {
2003-01-09 13:36:00 +08:00
2003-05-15 23:42:53 +08:00
/* "listen" directives */
2003-05-30 22:27:59 +08:00
lscf = cscfp[s]->listen.elts;
2003-05-20 00:39:14 +08:00
for (l = 0; l < cscfp[s]->listen.nelts; l++) {
2003-01-09 13:36:00 +08:00
port_found = 0;
/* AF_INET only */
2003-05-30 22:27:59 +08:00
in_port = in_ports.elts;
2003-01-09 13:36:00 +08:00
for (p = 0; p < in_ports.nelts; p++) {
if (lscf[l].port == in_port[p].port) {
2003-05-15 23:42:53 +08:00
/* the port is already in the port list */
2003-01-09 13:36:00 +08:00
port_found = 1;
addr_found = 0;
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
for (a = 0; a < in_port[p].addrs.nelts; a++) {
2003-01-09 13:36:00 +08:00
if (lscf[l].addr == in_addr[a].addr) {
2003-05-15 23:42:53 +08:00
/* the address is already bound to this port */
/* "server_name" directives */
2003-05-30 22:27:59 +08:00
s_name = cscfp[s]->server_names.elts;
2003-05-20 00:39:14 +08:00
for (n = 0; n < cscfp[s]->server_names.nelts; n++) {
2003-05-15 23:42:53 +08:00
/* add the server name and server core module
configuration to the address:port */
/* TODO: duplicate names can be checked here */
2003-01-09 13:36:00 +08:00
ngx_test_null(name,
ngx_push_array(&in_addr[a].names),
NGX_CONF_ERROR);
name->name = s_name[n].name;
name->core_srv_conf = s_name[n].core_srv_conf;
}
2003-05-15 23:42:53 +08:00
/* check duplicate "default" server that
serves this address:port */
2003-01-09 13:36:00 +08:00
if (lscf[l].flags & NGX_HTTP_DEFAULT_SERVER) {
if (in_addr[a].flags
& NGX_HTTP_DEFAULT_SERVER) {
ngx_log_error(NGX_LOG_ERR, cf->log, 0,
2003-07-07 14:11:50 +08:00
"duplicate default server in %s:%d",
lscf[l].file_name.data,
lscf[l].line);
2003-01-09 13:36:00 +08:00
return NGX_CONF_ERROR;
}
in_addr[a].flags |= NGX_HTTP_DEFAULT_SERVER;
2003-05-20 00:39:14 +08:00
in_addr[a].core_srv_conf = cscfp[s];
2003-01-09 13:36:00 +08:00
}
addr_found = 1;
break;
2003-05-15 23:42:53 +08:00
} else if (in_addr[a].addr == INADDR_ANY) {
/* "*:port" must be the last resort so move it
to the end of the address list and add
the new address at its place */
2003-01-09 13:36:00 +08:00
ngx_test_null(inaddr,
2003-05-15 23:42:53 +08:00
ngx_push_array(&in_port[p].addrs),
2003-01-09 13:36:00 +08:00
NGX_CONF_ERROR);
ngx_memcpy(inaddr, &in_addr[a],
sizeof(ngx_http_in_addr_t));
2003-05-15 23:42:53 +08:00
in_addr[a].addr = lscf[l].addr;
2003-05-27 20:18:54 +08:00
in_addr[a].flags = lscf[l].flags;
2003-05-20 00:39:14 +08:00
in_addr[a].core_srv_conf = cscfp[s];
2003-05-15 23:42:53 +08:00
/* create the empty list of the server names that
can be served on this address:port */
2003-01-09 13:36:00 +08:00
ngx_init_array(inaddr->names, cf->pool, 10,
sizeof(ngx_http_server_name_t),
NGX_CONF_ERROR);
addr_found = 1;
break;
}
}
if (!addr_found) {
2003-05-15 23:42:53 +08:00
/* add the address to the addresses list that
bound to this port */
2003-01-09 13:36:00 +08:00
ngx_test_null(inaddr,
2003-05-15 23:42:53 +08:00
ngx_push_array(&in_port[p].addrs),
2003-01-09 13:36:00 +08:00
NGX_CONF_ERROR);
inaddr->addr = lscf[l].addr;
2003-05-27 20:18:54 +08:00
inaddr->flags = lscf[l].flags;
2003-05-20 00:39:14 +08:00
inaddr->core_srv_conf = cscfp[s];
2003-01-09 13:36:00 +08:00
2003-05-15 23:42:53 +08:00
/* create the empty list of the server names that
can be served on this address:port */
2003-01-09 13:36:00 +08:00
ngx_init_array(inaddr->names, cf->pool, 10,
sizeof(ngx_http_server_name_t),
NGX_CONF_ERROR);
}
}
}
if (!port_found) {
2003-05-15 23:42:53 +08:00
/* add the port to the in_port list */
2003-01-09 13:36:00 +08:00
ngx_test_null(in_port,
ngx_push_array(&in_ports),
NGX_CONF_ERROR);
in_port->port = lscf[l].port;
2003-05-27 20:18:54 +08:00
ngx_test_null(in_port->port_name.data, ngx_palloc(cf->pool, 7),
NGX_CONF_ERROR);
in_port->port_name.len = ngx_snprintf(in_port->port_name.data,
7, ":%d",
in_port->port);
2003-05-15 23:42:53 +08:00
/* create list of the addresses that bound to this port ... */
ngx_init_array(in_port->addrs, cf->pool, 10,
2003-01-09 13:36:00 +08:00
sizeof(ngx_http_in_addr_t),
NGX_CONF_ERROR);
2003-05-15 23:42:53 +08:00
ngx_test_null(inaddr, ngx_push_array(&in_port->addrs),
2003-01-09 13:36:00 +08:00
NGX_CONF_ERROR);
2003-05-15 23:42:53 +08:00
/* ... and add the address to this list */
2003-01-09 13:36:00 +08:00
inaddr->addr = lscf[l].addr;
2003-05-27 20:18:54 +08:00
inaddr->flags = lscf[l].flags;
2003-05-20 00:39:14 +08:00
inaddr->core_srv_conf = cscfp[s];
2003-01-09 13:36:00 +08:00
2003-05-15 23:42:53 +08:00
/* create the empty list of the server names that
can be served on this address:port */
2003-01-09 13:36:00 +08:00
ngx_init_array(inaddr->names, cf->pool, 10,
sizeof(ngx_http_server_name_t),
NGX_CONF_ERROR);
}
}
}
2003-05-15 23:42:53 +08:00
/* optimize the lists of the ports, the addresses and the server names */
2003-01-28 23:56:37 +08:00
2003-01-09 13:36:00 +08:00
/* AF_INET only */
2003-05-30 22:27:59 +08:00
in_port = in_ports.elts;
2003-01-09 13:36:00 +08:00
for (p = 0; p < in_ports.nelts; p++) {
2003-05-15 23:42:53 +08:00
/* check whether the all server names point to the same server */
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
for (a = 0; a < in_port[p].addrs.nelts; a++) {
2003-01-09 13:36:00 +08:00
virtual_names = 0;
2003-05-30 22:27:59 +08:00
name = in_addr[a].names.elts;
2003-01-09 13:36:00 +08:00
for (n = 0; n < in_addr[a].names.nelts; n++) {
if (in_addr[a].core_srv_conf != name[n].core_srv_conf) {
virtual_names = 1;
break;
}
}
2003-05-15 23:42:53 +08:00
/* if the all server names point to the same server
then we do not need to check them at run-time */
2003-01-09 13:36:00 +08:00
if (!virtual_names) {
in_addr[a].names.nelts = 0;
}
}
2003-05-15 23:42:53 +08:00
/* if there's the binding to "*:port" then we need to bind()
to "*:port" only and ignore the other bindings */
2003-01-09 13:36:00 +08:00
if (in_addr[a - 1].addr == INADDR_ANY) {
2003-05-15 23:42:53 +08:00
a--;
2003-01-09 13:36:00 +08:00
} else {
2003-05-15 23:42:53 +08:00
a = 0;
2003-01-09 13:36:00 +08:00
}
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
while (a < in_port[p].addrs.nelts) {
2003-01-09 13:36:00 +08:00
2003-07-03 02:51:41 +08:00
ngx_test_null(ls, ngx_push_array(&cf->cycle->listening),
2003-01-09 13:36:00 +08:00
NGX_CONF_ERROR);
2003-06-11 23:28:34 +08:00
ngx_memzero(ls, sizeof(ngx_listening_t));
2003-01-09 13:36:00 +08:00
ngx_test_null(addr_in,
ngx_pcalloc(cf->pool, sizeof(struct sockaddr_in)),
NGX_CONF_ERROR);
addr_in->sin_family = AF_INET;
addr_in->sin_addr.s_addr = in_addr[a].addr;
2003-05-30 22:27:59 +08:00
addr_in->sin_port = htons((u_short) in_port[p].port);
2003-01-09 13:36:00 +08:00
ngx_test_null(ls->addr_text.data,
ngx_palloc(cf->pool, INET_ADDRSTRLEN + 6),
NGX_CONF_ERROR);
ls->addr_text.len =
2003-05-15 23:42:53 +08:00
ngx_snprintf(ls->addr_text.data
+ ngx_inet_ntop(AF_INET,
(char *) &in_addr[a].addr,
ls->addr_text.data,
INET_ADDRSTRLEN),
6, ":%d", in_port[p].port);
2003-01-09 13:36:00 +08:00
2003-07-03 02:51:41 +08:00
ls->fd = -1;
2003-01-09 13:36:00 +08:00
ls->family = AF_INET;
ls->type = SOCK_STREAM;
ls->protocol = IPPROTO_IP;
2003-06-11 23:28:34 +08:00
#if (WIN32)
2003-01-09 13:36:00 +08:00
ls->flags = WSA_FLAG_OVERLAPPED;
#endif
ls->sockaddr = (struct sockaddr *) addr_in;
ls->socklen = sizeof(struct sockaddr_in);
ls->addr = offsetof(struct sockaddr_in, sin_addr);
ls->addr_text_max_len = INET_ADDRSTRLEN;
ls->backlog = -1;
ls->nonblocking = 1;
ls->handler = ngx_http_init_connection;
2003-07-21 05:15:59 +08:00
#if 0
2003-07-04 23:10:33 +08:00
ls->log = cf->cycle->log;
2003-07-21 05:15:59 +08:00
#endif
2003-06-11 23:28:34 +08:00
cscf = in_addr[a].core_srv_conf;
ls->pool_size = cscf->connection_pool_size;
ls->post_accept_timeout = cscf->post_accept_timeout;
2003-07-21 05:15:59 +08:00
clcf = cscf->ctx->loc_conf[ngx_http_core_module.ctx_index];
ls->log = clcf->err_log;
2003-06-11 23:28:34 +08:00
#if (WIN32)
2003-07-07 14:11:50 +08:00
iocpcf = ngx_event_get_conf(cf->cycle->conf_ctx, ngx_iocp_module);
2003-06-11 23:28:34 +08:00
if (iocpcf->acceptex_read) {
ls->post_accept_buffer_size = cscf->client_header_buffer_size;
}
#endif
2003-01-09 13:36:00 +08:00
ls->ctx = ctx;
2003-05-15 23:42:53 +08:00
if (in_port[p].addrs.nelts > 1) {
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
if (in_addr[in_port[p].addrs.nelts - 1].addr != INADDR_ANY) {
/* if this port has not the "*:port" binding then create
the separate ngx_http_in_port_t for the all bindings */
ngx_test_null(inport,
ngx_palloc(cf->pool,
2003-07-07 14:11:50 +08:00
sizeof(ngx_http_in_port_t)),
2003-05-15 23:42:53 +08:00
NGX_CONF_ERROR);
inport->port = in_port[p].port;
2003-05-27 20:18:54 +08:00
inport->port_name = in_port[p].port_name;
2003-05-15 23:42:53 +08:00
/* init list of the addresses ... */
ngx_init_array(inport->addrs, cf->pool, 1,
sizeof(ngx_http_in_addr_t),
NGX_CONF_ERROR);
/* ... and set up it with the first address */
inport->addrs.nelts = 1;
inport->addrs.elts = in_port[p].addrs.elts;
ls->servers = inport;
/* prepare for the next cycle */
2003-06-12 13:54:39 +08:00
in_port[p].addrs.elts = (char *) in_port[p].addrs.elts
+ in_port[p].addrs.size;
2003-05-15 23:42:53 +08:00
in_port[p].addrs.nelts--;
in_addr = (ngx_http_in_addr_t *) in_port[p].addrs.elts;
a = 0;
continue;
2003-01-09 13:36:00 +08:00
}
}
2003-05-15 23:42:53 +08:00
ls->servers = &in_port[p];
a++;
2003-01-09 13:36:00 +08:00
}
}
2003-01-30 01:02:48 +08:00
/* DEBUG STUFF */
2003-05-30 22:27:59 +08:00
in_port = in_ports.elts;
2003-01-30 01:02:48 +08:00
for (p = 0; p < in_ports.nelts; p++) {
2003-07-07 14:11:50 +08:00
ngx_log_debug(cf->log, "port: %d %08x" _ in_port[p].port _ &in_port[p]);
2003-05-30 22:27:59 +08:00
in_addr = in_port[p].addrs.elts;
2003-05-15 23:42:53 +08:00
for (a = 0; a < in_port[p].addrs.nelts; a++) {
2003-01-30 01:02:48 +08:00
char ip[20];
2003-01-30 15:28:09 +08:00
ngx_inet_ntop(AF_INET, (char *) &in_addr[a].addr, ip, 20);
2003-01-30 01:02:48 +08:00
ngx_log_debug(cf->log, "%s %08x" _ ip _ in_addr[a].core_srv_conf);
2003-05-30 22:27:59 +08:00
s_name = in_addr[a].names.elts;
for (n = 0; n < in_addr[a].names.nelts; n++) {
ngx_log_debug(cf->log, "%s %08x" _ s_name[n].name.data _
s_name[n].core_srv_conf);
}
2003-01-30 01:02:48 +08:00
}
}
/**/
*cf = pcf;
2003-01-09 13:36:00 +08:00
return NGX_CONF_OK;
}