mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-16 17:41:52 +03:00
Handling key exceptions on the variable itself
This is the first step towords to solve #1697
This commit is contained in:
@@ -71,8 +71,10 @@ ModSecurity::ModSecurity()
|
||||
#else
|
||||
m_global_collection(new collection::backend::InMemoryPerProcess("GLOBAL")),
|
||||
m_ip_collection(new collection::backend::InMemoryPerProcess("IP")),
|
||||
m_resource_collection(new collection::backend::InMemoryPerProcess("RESOURCE")),
|
||||
m_session_collection(new collection::backend::InMemoryPerProcess("SESSION")),
|
||||
m_resource_collection(
|
||||
new collection::backend::InMemoryPerProcess("RESOURCE")),
|
||||
m_session_collection(
|
||||
new collection::backend::InMemoryPerProcess("SESSION")),
|
||||
m_user_collection(new collection::backend::InMemoryPerProcess("USER")),
|
||||
#endif
|
||||
m_logCb(NULL) {
|
||||
|
||||
Reference in New Issue
Block a user