diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-30 08:01:50 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-30 08:01:50 +0000 |
commit | cc5956772bb28f1ca815d2636d44469ba00e687e (patch) | |
tree | 5d3d6d89bf05ea9a93d0d0452a24f78fc786e73b /src/http/ngx_http_request.c | |
parent | 6d7f8658ed788aeb0a8ee87a9ffc6613cc001bfa (diff) | |
download | nginx-cc5956772bb28f1ca815d2636d44469ba00e687e.tar.gz nginx-cc5956772bb28f1ca815d2636d44469ba00e687e.zip |
log server address
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index d4ddf4586..8a8b5ac97 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -173,7 +173,7 @@ ngx_http_init_connection(ngx_connection_t *c) return; } - ctx->client = &c->addr_text; + ctx->connection = c; ctx->request = NULL; ctx->current_request = NULL; @@ -2584,13 +2584,17 @@ ngx_http_log_error(ngx_log_t *log, u_char *buf, size_t len) ctx = log->data; - p = ngx_snprintf(buf, len, ", client: %V", ctx->client); + p = ngx_snprintf(buf, len, ", client: %V", &ctx->connection->addr_text); len -= p - buf; r = ctx->request; if (r) { return r->log_handler(r, ctx->current_request, p, len); + + } else { + p = ngx_snprintf(p, len, ", server: %V", + &ctx->connection->listening->addr_text); } return p; |