diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-11-10 15:22:33 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-11-10 15:22:33 +0000 |
commit | abe378e820d16fe5fa40a5828354a4ba495b5573 (patch) | |
tree | 619f8797a181140a6c524bf9e8cf47b1fba21fa5 /src/http/ngx_http_request.c | |
parent | 74b7e5fadd33804eefa37ff86764b512e2de379b (diff) | |
download | nginx-abe378e820d16fe5fa40a5828354a4ba495b5573.tar.gz nginx-abe378e820d16fe5fa40a5828354a4ba495b5573.zip |
ngx_http_limit_req_module
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r-- | src/http/ngx_http_request.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index e1f0ae793..ab4c0e08f 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -39,7 +39,6 @@ static void ngx_http_request_handler(ngx_event_t *ev); static ngx_int_t ngx_http_set_write_handler(ngx_http_request_t *r); static void ngx_http_writer(ngx_http_request_t *r); -static void ngx_http_test_reading(ngx_http_request_t *r); static void ngx_http_set_keepalive(ngx_http_request_t *r); static void ngx_http_keepalive_handler(ngx_event_t *ev); static void ngx_http_set_lingering_close(ngx_http_request_t *r); @@ -2024,7 +2023,7 @@ ngx_http_block_reading(ngx_http_request_t *r) } -static void +void ngx_http_test_reading(ngx_http_request_t *r) { int n; |