Skip to content

Commit 48f1470

Browse files
author
Felipe Zimmerle
committed
Adds support to SecArgumentSeparator
1 parent a302538 commit 48f1470

File tree

7 files changed

+6541
-6388
lines changed

7 files changed

+6541
-6388
lines changed

headers/modsecurity/rules_properties.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,11 @@ class RulesProperties {
319319
from->m_uploadTmpDirectory.m_value;
320320
}
321321

322+
if (from->m_secArgumentSeparator.m_set == true) {
323+
to->m_secArgumentSeparator.m_value = \
324+
from->m_secArgumentSeparator.m_value;
325+
}
326+
322327
if (from->m_httpblKey.m_set == true) {
323328
to->m_httpblKey.m_value = from->m_httpblKey.m_value;
324329
to->m_httpblKey.m_set = from->m_httpblKey.m_set;
@@ -446,6 +451,7 @@ class RulesProperties {
446451
ConfigString m_httpblKey;
447452
ConfigString m_uploadDirectory;
448453
ConfigString m_uploadTmpDirectory;
454+
ConfigString m_secArgumentSeparator;
449455
std::vector<actions::Action *> m_defaultActions[8];
450456
std::vector<modsecurity::Rule *> m_rules[8];
451457
};

0 commit comments

Comments
 (0)