mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +03:00
Removes reference counter for RulesSet
This commit is contained in:
parent
f2f5c9c958
commit
196adcae23
@ -48,16 +48,14 @@ class Driver;
|
|||||||
class RulesSet : public RulesSetProperties {
|
class RulesSet : public RulesSetProperties {
|
||||||
public:
|
public:
|
||||||
RulesSet()
|
RulesSet()
|
||||||
: RulesSetProperties(new DebugLog()),
|
: RulesSetProperties(new DebugLog())
|
||||||
unicode_codepage(0)
|
|
||||||
#ifndef NO_LOGS
|
#ifndef NO_LOGS
|
||||||
,m_secmarker_skipped(0)
|
,m_secmarker_skipped(0)
|
||||||
#endif
|
#endif
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
explicit RulesSet(DebugLog *customLog)
|
explicit RulesSet(DebugLog *customLog)
|
||||||
: RulesSetProperties(customLog),
|
: RulesSetProperties(customLog)
|
||||||
unicode_codepage(0)
|
|
||||||
#ifndef NO_LOGS
|
#ifndef NO_LOGS
|
||||||
,m_secmarker_skipped(0)
|
,m_secmarker_skipped(0)
|
||||||
#endif
|
#endif
|
||||||
@ -81,8 +79,6 @@ class RulesSet : public RulesSetProperties {
|
|||||||
void debug(int level, const std::string &id, const std::string &uri,
|
void debug(int level, const std::string &id, const std::string &uri,
|
||||||
const std::string &msg);
|
const std::string &msg);
|
||||||
|
|
||||||
int64_t unicode_codepage;
|
|
||||||
|
|
||||||
RulesSetPhases m_rulesSetPhases;
|
RulesSetPhases m_rulesSetPhases;
|
||||||
private:
|
private:
|
||||||
#ifndef NO_LOGS
|
#ifndef NO_LOGS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user