comparison src/core/ngx_string.h @ 2008:66dc85397a90

escape 0x00-0x1f, ", and \ in access log variables
author Igor Sysoev <igor@sysoev.ru>
date Thu, 15 May 2008 15:09:39 +0000
parents cb8c0c8e0c27
children 2f2052fdd882 d7d3a72c07d8
comparison
equal deleted inserted replaced
2007:b9de93d804ea 2008:66dc85397a90
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