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

@@ -22,7 +22,7 @@
#include <cctype>
#include <locale>
#include "modsecurity/assay.h"
#include "modsecurity/transaction.h"
#include "actions/transformations/transformation.h"
@@ -36,13 +36,13 @@ Md5::Md5(std::string action)
}
std::string Md5::evaluate(std::string value,
Assay *assay) {
Transaction *transaction) {
/**
* @todo Implement the transformation Md5
*/
if (assay) {
if (transaction) {
#ifndef NO_LOGS
assay->debug(4, "Transformation Md5 is not implemented yet.");
transaction->debug(4, "Transformation Md5 is not implemented yet.");
#endif
}
return value;