Renames class Assay to Transaction

This commit is contained in:
Felipe Zimmerle
2016-01-13 14:38:37 -03:00
parent f3fd5d6621
commit a51e707517
249 changed files with 2961 additions and 1235 deletions

View File

@@ -15,7 +15,7 @@
#include <string>
#include "modsecurity/assay.h"
#include "modsecurity/transaction.h"
#include "operators/operator.h"
@@ -32,7 +32,7 @@ class NoMatch : public Operator {
NoMatch(std::string op, std::string param, bool negation)
: Operator(op, param, negation) { }
bool evaluate(Assay *assay, const std::string &str) override;
bool evaluate(Transaction *transaction, const std::string &str) override;
};
} // namespace operators