comparison src/http/ngx_http_script.h @ 3325:42c16d8bddbe

regex named captures
author Igor Sysoev <igor@sysoev.ru>
date Mon, 16 Nov 2009 12:19:02 +0000
parents 77264e0157ad
children 187783310b65
comparison
equal deleted inserted replaced
3324:616da2ea901f 3325:42c16d8bddbe
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;