comparison src/core/ngx_string.h @ 2093:f68b8686f6ba stable-0.6

r2009 merge: escape 0x00-0x1f, ", and \ in access log variables
author Igor Sysoev <igor@sysoev.ru>
date Mon, 07 Jul 2008 10:24:25 +0000
parents cb8c0c8e0c27
children 2f2052fdd882 d7d3a72c07d8
comparison
equal deleted inserted replaced
2092:65cff41e9a4e 2093:f68b8686f6ba
23 ngx_str_t value; 23 ngx_str_t value;
24 } ngx_keyval_t; 24 } ngx_keyval_t;
25 25
26 26
27 typedef struct { 27 typedef struct {
28 unsigned len:29; 28 unsigned len:28;
29 29
30 unsigned valid:1; 30 unsigned valid:1;
31 unsigned no_cacheable:1; 31 unsigned no_cacheable:1;
32 unsigned not_found:1; 32 unsigned not_found:1;
33 unsigned escape:1;
33 34
34 u_char *data; 35 u_char *data;
35 } ngx_variable_value_t; 36 } ngx_variable_value_t;
36 37
37 38