mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 11:44:32 +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 SkipAfter : public Action {
|
||||
public:
|
||||
explicit SkipAfter(std::string action);
|
||||
explicit SkipAfter(std::string action)
|
||||
: Action(action, RunTimeOnlyIfMatchKind) { }
|
||||
|
||||
bool evaluate(Rule *rule, Transaction *transaction) override;
|
||||
|
||||
private:
|
||||
std::string m_marker;
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user