diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-10-08 15:32:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-10-08 15:32:54 +0000 |
commit | 3ae32483cd9315aef5066e2a06411e9ffb8a5560 (patch) | |
tree | 423fdadc2fceefe023b8882287359ae7a28eceda /src/http/modules/proxy/ngx_http_proxy_handler.c | |
parent | fd3e374a02c7fc98d8193222885b453084f87727 (diff) | |
download | nginx-3ae32483cd9315aef5066e2a06411e9ffb8a5560.tar.gz nginx-3ae32483cd9315aef5066e2a06411e9ffb8a5560.zip |
nginx-0.0.1-2003-10-08-19:32:54 import
Diffstat (limited to 'src/http/modules/proxy/ngx_http_proxy_handler.c')
-rw-r--r-- | src/http/modules/proxy/ngx_http_proxy_handler.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/modules/proxy/ngx_http_proxy_handler.c b/src/http/modules/proxy/ngx_http_proxy_handler.c index 9333c954c..8be3aa341 100644 --- a/src/http/modules/proxy/ngx_http_proxy_handler.c +++ b/src/http/modules/proxy/ngx_http_proxy_handler.c @@ -101,8 +101,12 @@ static char conn_close_header[] = "Connection: close" CRLF; static int ngx_http_proxy_translate_handler(ngx_http_request_t *r) { +#if 0 r->handler = ngx_http_proxy_handler; return NGX_OK; +#else + return NGX_DECLINED; +#endif } |