comparison src/http/ngx_http_variables.c @ 138:8e6d4d96ec4c NGINX_0_3_16

nginx 0.3.16 *) Feature: the ngx_http_map_module. *) Feature: the "types_hash_max_size" and "types_hash_bucket_size" directives. *) Feature: the "ssi_value_length" directive. *) Feature: the "worker_rlimit_core" directive. *) Workaround: the connection number in logs was always 1 if nginx was built by the icc 8.1 or 9.0 compilers with optimization for Pentium 4. *) Bugfix: the "config timefmt" SSI command set incorrect time format. *) Bugfix: nginx did not close connection to IMAP/POP3 backend for the SSL connections; bug appeared in 0.3.13. Thanks to Rob Mueller. *) Bugfix: segmentation fault may occurred in at SSL shutdown; bug appeared in 0.3.13.
author Igor Sysoev <http://sysoev.ru>
date Fri, 16 Dec 2005 00:00:00 +0300
parents 91372f004adf
children 73e8476f9142
comparison
equal deleted inserted replaced
137:768f51dd150b 138:8e6d4d96ec4c
114 114
115 { ngx_string("query_string"), ngx_http_variable_request, 115 { ngx_string("query_string"), ngx_http_variable_request,
116 offsetof(ngx_http_request_t, args), 116 offsetof(ngx_http_request_t, args),
117 NGX_HTTP_VAR_NOCACHABLE, 0 }, 117 NGX_HTTP_VAR_NOCACHABLE, 0 },
118 118
119 { ngx_string("args"), ngx_http_variable_request,
120 offsetof(ngx_http_request_t, args),
121 NGX_HTTP_VAR_NOCACHABLE, 0 },
122
119 { ngx_string("request_filename"), ngx_http_variable_request_filename, 0, 123 { ngx_string("request_filename"), ngx_http_variable_request_filename, 0,
120 NGX_HTTP_VAR_NOCACHABLE, 0 }, 124 NGX_HTTP_VAR_NOCACHABLE, 0 },
121 125
122 { ngx_string("server_name"), ngx_http_variable_request, 126 { ngx_string("server_name"), ngx_http_variable_request,
123 offsetof(ngx_http_request_t, server_name), 0, 0 }, 127 offsetof(ngx_http_request_t, server_name), 0, 0 },
855 cmcf->variables_hash.max_size = 500; 859 cmcf->variables_hash.max_size = 500;
856 cmcf->variables_hash.bucket_limit = 1; 860 cmcf->variables_hash.bucket_limit = 1;
857 cmcf->variables_hash.bucket_size = sizeof(ngx_http_variable_t); 861 cmcf->variables_hash.bucket_size = sizeof(ngx_http_variable_t);
858 cmcf->variables_hash.name = "http variables"; 862 cmcf->variables_hash.name = "http variables";
859 863
860 if (ngx_hash_init(&cmcf->variables_hash, cf->pool, 864 if (ngx_hash0_init(&cmcf->variables_hash, cf->pool,
861 cmcf->all_variables.elts, cmcf->all_variables.nelts) 865 cmcf->all_variables.elts, cmcf->all_variables.nelts)
862 != NGX_OK) 866 != NGX_OK)
863 { 867 {
864 return NGX_ERROR; 868 return NGX_ERROR;
865 } 869 }