comparison src/http/modules/ngx_http_proxy_module.c @ 244:500a3242dff6 NGINX_0_4_7

nginx 0.4.7 *) Feature: the ngx_http_flv_module. *) Feature: the $request_body_file variable. *) Feature: the "charset" and "source_charset" directives support the variables. *) Bugfix: if an "include" SSI command were before another "include" SSI command with an "wait" parameter, then the "wait" parameter might not work. *) Bugfix: if the "proxy_buffering off" directive was used or while working with memcached the connections might not be closed on timeout. *) Bugfix: nginx did not run on 64-bit platforms except amd64, sparc64, and ppc64.
author Igor Sysoev <http://sysoev.ru>
date Tue, 10 Oct 2006 00:00:00 +0400
parents a528ae0fe909
children 644510700914
comparison
equal deleted inserted replaced
243:d371c9d33781 244:500a3242dff6
1821 } 1821 }
1822 1822
1823 hash.hash = &conf->upstream.hide_headers_hash; 1823 hash.hash = &conf->upstream.hide_headers_hash;
1824 hash.key = ngx_hash_key_lc; 1824 hash.key = ngx_hash_key_lc;
1825 hash.max_size = 512; 1825 hash.max_size = 512;
1826 hash.bucket_size = ngx_cacheline_size; 1826 hash.bucket_size = ngx_align(64, ngx_cacheline_size);
1827 hash.name = "proxy_hide_headers_hash"; 1827 hash.name = "proxy_hide_headers_hash";
1828 hash.pool = cf->pool; 1828 hash.pool = cf->pool;
1829 hash.temp_pool = NULL; 1829 hash.temp_pool = NULL;
1830 1830
1831 if (ngx_hash_init(&hash, hide_headers.elts, hide_headers.nelts) != NGX_OK) { 1831 if (ngx_hash_init(&hash, hide_headers.elts, hide_headers.nelts) != NGX_OK) {