summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-10-23 15:54:19 +0000
committerIgor Sysoev <igor@sysoev.ru>2003-10-23 15:54:19 +0000
commit8556e6da41e80772cb9710e4309d9ad44a7b360e (patch)
tree8bb0a9f5b03e8c8fc6a2df3c1b51335dcdeae5ac /src/http/modules
parentf107910a9ef3b7de8752fc4e9e34cb69c1924a09 (diff)
downloadnginx-8556e6da41e80772cb9710e4309d9ad44a7b360e.tar.gz
nginx-8556e6da41e80772cb9710e4309d9ad44a7b360e.tar.bz2
nginx-0.0.1-2003-10-23-19:54:19 import
Diffstat (limited to 'src/http/modules')
-rw-r--r--src/http/modules/ngx_http_gzip_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_gzip_filter.c b/src/http/modules/ngx_http_gzip_filter.c
index 6a89ca0da..a4e0afa1b 100644
--- a/src/http/modules/ngx_http_gzip_filter.c
+++ b/src/http/modules/ngx_http_gzip_filter.c
@@ -247,7 +247,7 @@ static int ngx_http_gzip_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
*
* 8K is for zlib deflate_state (~6K).
*
- * TODO: 64-bit, round to PAGE_SIZE
+ * TODO: 64-bit, round to PAGE_SIZE, autoconf of deflate_state size
*/
ctx->allocated = 8192 + (1 << (wbits + 2)) + (1 << (memlevel + 9));