comparison src/core/ngx_hash.h @ 310:95d92ec39071 NGINX_0_5_25

nginx 0.5.25 *) Bugfix: nginx could not be built with the --without-http_rewrite_module parameter; bug appeared in 0.5.24.
author Igor Sysoev <http://sysoev.ru>
date Mon, 11 Jun 2007 00:00:00 +0400
parents e6da4931e0e0
children 429900ca25ee
comparison
equal deleted inserted replaced
309:638a3e67d37d 310:95d92ec39071
77 ngx_array_t *dns_wildcards_hash; 77 ngx_array_t *dns_wildcards_hash;
78 } ngx_hash_keys_arrays_t; 78 } ngx_hash_keys_arrays_t;
79 79
80 80
81 typedef struct { 81 typedef struct {
82 void **buckets;
83 ngx_uint_t hash_size;
84
85 ngx_uint_t max_size;
86 ngx_uint_t bucket_limit;
87 size_t bucket_size;
88 char *name;
89 ngx_uint_t min_buckets;
90 } ngx_hash0_t;
91
92
93 typedef struct {
94 ngx_uint_t hash; 82 ngx_uint_t hash;
95 ngx_str_t key; 83 ngx_str_t key;
96 ngx_str_t value; 84 ngx_str_t value;
97 u_char *lowcase_key; 85 u_char *lowcase_key;
98 } ngx_table_elt_t; 86 } ngx_table_elt_t;