comparison src/http/ngx_http_script.h @ 546:e19e5f542878 NGINX_0_8_25

nginx 0.8.25 *) Change: now no message is written in an error log if a variable is not found by $r->variable() method. *) Feature: the ngx_http_degradation_module. *) Feature: regular expression named captures. *) Feature: now URI part is not required a "proxy_pass" directive if variables are used. *) Feature: now the "msie_padding" directive works for Chrome too. *) Bugfix: a segmentation fault occurred in a worker process on low memory condition; the bug had appeared in 0.8.18. *) Bugfix: nginx sent gzipped responses to clients those do not support gzip, if "gzip_static on" and "gzip_vary off"; the bug had appeared in 0.8.16.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 Nov 2009 00:00:00 +0300
parents 392c16f2d858
children 4d3e880ce86c
comparison
equal deleted inserted replaced
545:91e4b06e1a01 546:e19e5f542878
112 112
113 #if (NGX_PCRE) 113 #if (NGX_PCRE)
114 114
115 typedef struct { 115 typedef struct {
116 ngx_http_script_code_pt code; 116 ngx_http_script_code_pt code;
117 ngx_regex_t *regex; 117 ngx_http_regex_t *regex;
118 ngx_array_t *lengths; 118 ngx_array_t *lengths;
119 uintptr_t size; 119 uintptr_t size;
120 uintptr_t ncaptures;
121 uintptr_t status; 120 uintptr_t status;
122 uintptr_t next; 121 uintptr_t next;
123 122
124 uintptr_t test:1; 123 uintptr_t test:1;
125 uintptr_t negative_test:1; 124 uintptr_t negative_test:1;