comparison src/http/modules/ngx_http_referer_module.c @ 4241:6afb20bf2ad5 stable-1.0

Merging r4009, r4133, r4184, r4201, r4202, r4203, r4204, r4205: Miscellaneous fixes: *) Fix of names of the referer hash size directives introduced in r3940. *) Cosmetics: replaced NGX_CONF_TAKE1 to NGX_CONF_FLAG for "sendfile" and "chunked_transfer_encoding" directives, to be in line with all directives taking a boolean argument. Both flags will ensure that a directive takes one argument. *) Improved ngx_parse_time() code readability. *) Preallocating exact number of default MIME types entries. *) Stylistic change in checking the boolean expression. *) Replaced magic constants representing default values of some directives with appropriate #define's. *) Fixed grammar in a comment. *) Fixed two minor bugs in "types" parsing code.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 01 Nov 2011 11:19:58 +0000
parents 3cbbe86a7a95
children d620f497c50f
comparison
equal deleted inserted replaced
4240:17ab1927f80f 4241:6afb20bf2ad5
307 ngx_cacheline_size); 307 ngx_cacheline_size);
308 308
309 hash.key = ngx_hash_key_lc; 309 hash.key = ngx_hash_key_lc;
310 hash.max_size = conf->referer_hash_max_size; 310 hash.max_size = conf->referer_hash_max_size;
311 hash.bucket_size = conf->referer_hash_bucket_size; 311 hash.bucket_size = conf->referer_hash_bucket_size;
312 hash.name = "referers_hash"; 312 hash.name = "referer_hash";
313 hash.pool = cf->pool; 313 hash.pool = cf->pool;
314 314
315 if (conf->keys->keys.nelts) { 315 if (conf->keys->keys.nelts) {
316 hash.hash = &conf->hash.hash; 316 hash.hash = &conf->hash.hash;
317 hash.temp_pool = NULL; 317 hash.temp_pool = NULL;