diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-08-13 16:31:01 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-08-13 16:31:01 +0000 |
commit | cf1735e458612db88cae69fb94633d89f7fbb261 (patch) | |
tree | 627493a57d557d00c9432fdad2cec561ca3ea9ed /src/http/ngx_http_request.h | |
parent | c71e3d8f8182b3034f4d7527bdc1748730c5863f (diff) | |
download | nginx-cf1735e458612db88cae69fb94633d89f7fbb261.tar.gz nginx-cf1735e458612db88cae69fb94633d89f7fbb261.zip |
restore connection address on request closure,
this fixes the issue when a frontend before nginx sends various client
connections via keepalive connection to nginx
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 9a6223963..034da1cd5 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -436,16 +436,6 @@ struct ngx_http_request_s { unsigned bypass_cache:1; unsigned no_cache:1; -#if (NGX_HTTP_REALIP) - - /* - * instead of using the request context data in ngx_http_realip_module - * we use the single bit in the request structure - */ - unsigned realip_set:1; - -#endif - /* * instead of using the request context data in ngx_http_limit_zone_module * we use the single bit in the request structure |