mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-16 17:41:52 +03:00
Adds support to config warnings
This commit is contained in:
@@ -120,6 +120,19 @@ class Action {
|
||||
}
|
||||
};
|
||||
|
||||
class ActionNotSupported : public Action {
|
||||
public:
|
||||
ActionNotSupported() : Action()
|
||||
{ };
|
||||
|
||||
explicit ActionNotSupported(const std::string& action)
|
||||
: Action(action)
|
||||
{ };
|
||||
|
||||
ActionNotSupported(const ActionNotSupported &other) = delete;
|
||||
ActionNotSupported &operator=(const ActionNotSupported& a) = delete;
|
||||
};
|
||||
|
||||
|
||||
} // namespace actions
|
||||
} // namespace modsecurity
|
||||
|
||||
Reference in New Issue
Block a user