summaryrefslogtreecommitdiff
path: root/src/sp_config_keywords.c
diff options
context:
space:
mode:
authorjvoisin2023-01-31 20:16:21 +0100
committerjvoisin2023-01-31 20:25:14 +0100
commit78e451eaf99e8f239867def2d8220dfa348cc167 (patch)
treedcd1f1964634919bd0b9784d3546fd3690f389a1 /src/sp_config_keywords.c
parent26f9987a538dc68d5a825b1712d3456a2d7aa109 (diff)
Add sp.log_max_len
Diffstat (limited to 'src/sp_config_keywords.c')
-rw-r--r--src/sp_config_keywords.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sp_config_keywords.c b/src/sp_config_keywords.c
index ff834dd..e7ff3e6 100644
--- a/src/sp_config_keywords.c
+++ b/src/sp_config_keywords.c
@@ -144,6 +144,7 @@ SP_PARSE_FN(parse_global) {
144 {parse_str, SP_TOKEN_ENCRYPTION_KEY, &(SPCFG(encryption_key))}, 144 {parse_str, SP_TOKEN_ENCRYPTION_KEY, &(SPCFG(encryption_key))},
145 {parse_str, SP_TOKEN_ENV_VAR, &(SPCFG(cookies_env_var))}, 145 {parse_str, SP_TOKEN_ENV_VAR, &(SPCFG(cookies_env_var))},
146 {parse_log_media, SP_TOKEN_LOG_MEDIA, &(SPCFG(log_media))}, 146 {parse_log_media, SP_TOKEN_LOG_MEDIA, &(SPCFG(log_media))},
147 {parse_ulong, SP_TOKEN_LOG_MAX_LEN, &(SPCFG(log_max_len))},
147 {parse_ulong, SP_TOKEN_MAX_EXECUTION_DEPTH, &(SPCFG(max_execution_depth))}, 148 {parse_ulong, SP_TOKEN_MAX_EXECUTION_DEPTH, &(SPCFG(max_execution_depth))},
148 {parse_enable, SP_TOKEN_SERVER_ENCODE, &(SPCFG(server_encode))}, 149 {parse_enable, SP_TOKEN_SERVER_ENCODE, &(SPCFG(server_encode))},
149 {parse_enable, SP_TOKEN_SERVER_STRIP, &(SPCFG(server_strip))}, 150 {parse_enable, SP_TOKEN_SERVER_STRIP, &(SPCFG(server_strip))},