mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-16 17:41:52 +03:00
Actions refactoring: now there is a clear definiation on the action name
This commit is contained in:
@@ -29,12 +29,10 @@ namespace actions {
|
||||
|
||||
class Msg : public Action {
|
||||
public:
|
||||
explicit Msg(std::string action);
|
||||
explicit Msg(std::string action)
|
||||
: Action(action, RunTimeOnlyIfMatchKind) { }
|
||||
|
||||
bool evaluate(Rule *rule, Transaction *transaction) override;
|
||||
|
||||
private:
|
||||
std::string m_msg;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user