mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +03:00
Changes library namespace from ModSecurity to modsecurity
This commit is contained in:
parent
a69e49a1b0
commit
b5a43871e6
@ -34,6 +34,7 @@
|
||||
#define HEADERS_MODSECURITY_ASSAY_H_
|
||||
|
||||
#ifndef __cplusplus
|
||||
typedef struct ModSecurity_t ModSecurity;
|
||||
typedef struct Assay_t Assay;
|
||||
typedef struct Rules_t Rules;
|
||||
#endif
|
||||
@ -64,7 +65,7 @@ typedef struct Rules_t Rules;
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
|
||||
class ModSecurity;
|
||||
class Assay;
|
||||
|
@ -27,7 +27,7 @@ typedef struct DebugLog_t DebugLog;
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
|
||||
/** @ingroup ModSecurity_CPP_API */
|
||||
class DebugLog {
|
||||
|
@ -17,7 +17,7 @@
|
||||
#define HEADERS_MODSECURITY_INTERVENTION_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
#endif
|
||||
|
||||
typedef struct ModSecurityIntervention_t {
|
||||
|
@ -85,7 +85,7 @@
|
||||
|
||||
|
||||
#ifndef __cplusplus
|
||||
typedef struct ModSecurity_t ModSecurity;
|
||||
typedef struct ModSecurity_t modsecurity;
|
||||
#endif
|
||||
|
||||
|
||||
@ -123,7 +123,7 @@ typedef struct ModSecurity_t ModSecurity;
|
||||
typedef void (*LogCb) (void *, const char *);
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
|
||||
/* few forwarded declarations */
|
||||
namespace actions {
|
||||
|
@ -34,7 +34,7 @@
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Rule;
|
||||
class AuditLog;
|
||||
namespace Parser {
|
||||
|
@ -30,7 +30,7 @@
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Rule;
|
||||
class AuditLog;
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@ typedef struct Collection_t Collection;
|
||||
#ifdef __cplusplus
|
||||
#include <string>
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
|
||||
class Collection : public transaction::Variables {
|
||||
public:
|
||||
|
@ -39,7 +39,7 @@ typedef struct Variable_t Variable;
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace transaction {
|
||||
|
||||
class Collections :
|
||||
|
@ -28,7 +28,7 @@ typedef struct Variable_t Variable;
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace transaction {
|
||||
|
||||
class Variable {
|
||||
|
@ -33,7 +33,7 @@ typedef struct Variable_t Variables;
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace transaction {
|
||||
|
||||
class Variables :
|
||||
|
@ -37,7 +37,7 @@
|
||||
#define IF_MATCH(a) \
|
||||
if (op.compare(1, std::strlen(#a), #a) == 0)
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
class Rule;
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "modsecurity/assay.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
bool AuditLog::evaluate(Rule *rule, Assay *assay) {
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "src/rule.h"
|
||||
#include "modsecurity/intervention.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Block::Block(std::string action)
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "operators/contains.h"
|
||||
#include "operators/detect_sqli.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
bool Capture::evaluate(Rule *rule, Assay *assay) {
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define SRC_ACTIONS_CAPTURE_H_
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Rule;
|
||||
namespace actions {
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "modsecurity/assay.h"
|
||||
#include "src/rule.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
class Rule;
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "modsecurity/assay.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
CtlAuditLogParts::CtlAuditLogParts(std::string action)
|
||||
|
@ -21,7 +21,7 @@
|
||||
#ifndef SRC_ACTIONS_CTL_AUDIT_LOG_PARTS_H_
|
||||
#define SRC_ACTIONS_CTL_AUDIT_LOG_PARTS_H_
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "modsecurity/assay.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Deny::Deny(std::string action)
|
||||
|
@ -21,7 +21,7 @@
|
||||
#ifndef SRC_ACTIONS_DENY_H_
|
||||
#define SRC_ACTIONS_DENY_H_
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "modsecurity/assay.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
bool Log::evaluate(Rule *rule, Assay *assay) {
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "src/utils.h"
|
||||
#include "src/macro_expansion.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
LogData::LogData(std::string action)
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "src/utils.h"
|
||||
#include "src/macro_expansion.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Msg::Msg(std::string action)
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "modsecurity/assay.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
bool NoAuditLog::evaluate(Rule *rule, Assay *assay) {
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "modsecurity/assay.h"
|
||||
#include "src/rule.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Pass::Pass(std::string action)
|
||||
|
@ -21,7 +21,7 @@
|
||||
#ifndef SRC_ACTIONS_PASS_H_
|
||||
#define SRC_ACTIONS_PASS_H_
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "src/utils.h"
|
||||
#include "modsecurity/modsecurity.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Phase::Phase(std::string action)
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
class Rule;
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "modsecurity/assay.h"
|
||||
#include "src/macro_expansion.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Redirect::~Redirect() {
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "src/rule.h"
|
||||
#include "src/macro_expansion.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Rev::Rev(std::string action)
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "modsecurity/assay.h"
|
||||
#include "src/rule.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
bool RuleId::init(std::string *error) {
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
class Rule;
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "src/macro_expansion.h"
|
||||
#include "src/utils.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
SetVar::SetVar(std::string action)
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef SRC_ACTIONS_SET_VAR_H_
|
||||
#define SRC_ACTIONS_SET_VAR_H_
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
class Rule;
|
||||
|
||||
@ -33,7 +33,7 @@ class SetVar : public Action {
|
||||
|
||||
bool evaluate(Rule *rule, Assay *assay) override;
|
||||
void dump();
|
||||
bool init(std::string *error);
|
||||
bool init(std::string *error) override;
|
||||
|
||||
std::string collectionName;
|
||||
std::string variableName;
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "modsecurity/assay.h"
|
||||
#include "src/utils.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Severity::Severity(std::string action)
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "modsecurity/assay.h"
|
||||
#include "src/utils.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
SkipAfter::SkipAfter(std::string action)
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
#include "modsecurity/assay.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Status::Status(std::string action)
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifdef __cplusplus
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "src/utils.h"
|
||||
#include "src/macro_expansion.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
|
||||
Tag::Tag(std::string action)
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
class Assay;
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_BASE64_DECODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_BASE64_DECODE_EXT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_CMD_LINE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_COMPRESS_WHITESPACE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "src/utils.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_CSS_DECODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
#include "src/utils.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_ESCAPE_SEQ_DECODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_HEX_DECODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_HEX_ENCODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "src/utils.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_HTML_ENTITY_DECODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "src/utils.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_JS_DECODE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_LENGTH_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
#include "actions/action.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_MD5_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_NONE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "src/utils.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_NORMALISE_PATH_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "src/utils.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_NORMALISE_PATH_WIN_H_
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_EVEN_7BIT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_ODD_7BIT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_ZERO_7BIT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_COMMENTS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_COMMENTS_CHAR_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
#include "src/utils.h"
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_NULLS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "actions/transformations/transformation.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_WHITESPACE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "src/utils.h"
|
||||
|
||||
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
namespace actions {
|
||||
namespace transformations {
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define SRC_ACTIONS_TRANSFORMATIONS_REPLACE_COMMENTS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
namespace ModSecurity {
|
||||
namespace modsecurity {
|
||||
class Assay;
|
||||
|
||||
namespace actions {
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user