Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2004-08-23 23:09:29 +0400
committerIgor Sysoev <igor@sysoev.ru>2004-08-23 23:09:29 +0400
commitd00b3654cefbd8077bf6e6177de015edc4f1d713 (patch)
treec1fbc8bdc67f2852ff9d059b41fefcd639b512ec /src
parent94085ff2b5803eb84e15b8c8fe0cd631d7aa1804 (diff)
nginx-0.0.10-2004-08-23-23:09:29 import
Diffstat (limited to 'src')
-rw-r--r--src/http/ngx_http_request.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
index 25d75c6f5..95e6d5f2b 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -188,9 +188,10 @@ static void ngx_http_init_request(ngx_event_t *rev)
if (in_port->addrs.nelts > 1) {
/*
- * There are the several addresses on this port and one of them
- * is "*:port" so getsockname() is needed to determine
+ * There are several addresses on this port and one of them
+ * is the "*:port" wildcard so getsockname() is needed to determine
* the server address.
+ *
* AcceptEx() already gave this address.
*/
@@ -297,6 +298,7 @@ static void ngx_http_init_request(ngx_event_t *rev)
ngx_http_close_connection(c);
return;
}
+
/*
* set by ngx_pcalloc():
*