Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-05-15 19:09:39 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-05-15 19:09:39 +0400
commit5f3521cf4f433155868f23a1ebfa801177c69084 (patch)
tree59ab76eb505a175c6114da5044d6c5b5a578563f /src/core
parent5fd0931a611c112265d7d11a448cf26ffb542aad (diff)
escape 0x00-0x1f, ", and \ in access log variables
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ngx_string.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h
index 00617f3b2..3514e52f3 100644
--- a/src/core/ngx_string.h
+++ b/src/core/ngx_string.h
@@ -25,11 +25,12 @@ typedef struct {
typedef struct {
- unsigned len:29;
+ unsigned len:28;
unsigned valid:1;
unsigned no_cacheable:1;
unsigned not_found:1;
+ unsigned escape:1;
u_char *data;
} ngx_variable_value_t;