Removes RuleMessage from action execute signature

This commit is contained in:
Felipe Zimmerle
2019-03-15 01:35:07 -03:00
parent 01a80f8214
commit 4cd9fb39e6
30 changed files with 45 additions and 79 deletions

View File

@@ -33,8 +33,7 @@ class Deny : public Action {
public:
explicit Deny(const std::string &action) : Action(action) { }
bool execute(RuleWithActions *rule, Transaction *transaction,
RuleMessage &rm) override;
bool execute(RuleWithActions *rule, Transaction *transaction) override;
bool isDisruptive() override { return true; }
};