mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
Using full path in the header inclusion
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "audit_log/audit_log.h"
|
||||
#include "src/audit_log/audit_log.h"
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
@@ -21,10 +21,10 @@
|
||||
|
||||
#include <fstream>
|
||||
|
||||
#include "audit_log/writer/https.h"
|
||||
#include "audit_log/writer/parallel.h"
|
||||
#include "audit_log/writer/serial.h"
|
||||
#include "utils/regex.h"
|
||||
#include "src/audit_log/writer/https.h"
|
||||
#include "src/audit_log/writer/parallel.h"
|
||||
#include "src/audit_log/writer/serial.h"
|
||||
#include "src/utils/regex.h"
|
||||
|
||||
#define PARTS_CONSTAINS(a, c) \
|
||||
if (new_parts.find(toupper(a)) != std::string::npos \
|
||||
|
@@ -23,7 +23,7 @@
|
||||
#define SRC_AUDIT_LOG_AUDIT_LOG_H_
|
||||
|
||||
#include "modsecurity/transaction.h"
|
||||
#include "audit_log/writer.h"
|
||||
#include "src/audit_log/writer.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
|
@@ -13,11 +13,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "audit_log/writer.h"
|
||||
#include "src/audit_log/writer.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "audit_log/audit_log.h"
|
||||
#include "src/audit_log/audit_log.h"
|
||||
|
||||
namespace modsecurity {
|
||||
namespace audit_log {
|
||||
|
@@ -13,7 +13,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "audit_log/writer/https.h"
|
||||
#include "src/audit_log/writer/https.h"
|
||||
|
||||
#include <time.h>
|
||||
#include <stdio.h>
|
||||
@@ -25,10 +25,10 @@
|
||||
#include <fstream>
|
||||
#include <mutex>
|
||||
|
||||
#include "audit_log/audit_log.h"
|
||||
#include "src/audit_log/audit_log.h"
|
||||
#include "modsecurity/transaction.h"
|
||||
#include "utils/md5.h"
|
||||
#include "utils/https_client.h"
|
||||
#include "src/utils/md5.h"
|
||||
#include "src/utils/https_client.h"
|
||||
|
||||
|
||||
namespace modsecurity {
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#ifndef SRC_AUDIT_LOG_WRITER_HTTPS_H_
|
||||
#define SRC_AUDIT_LOG_WRITER_HTTPS_H_
|
||||
|
||||
#include "audit_log/writer.h"
|
||||
#include "src/audit_log/writer.h"
|
||||
#include "modsecurity/transaction.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@@ -13,7 +13,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "audit_log/writer/parallel.h"
|
||||
#include "src/audit_log/writer/parallel.h"
|
||||
|
||||
#include <time.h>
|
||||
#include <stdio.h>
|
||||
@@ -25,10 +25,10 @@
|
||||
#include <fstream>
|
||||
#include <mutex>
|
||||
|
||||
#include "audit_log/audit_log.h"
|
||||
#include "src/audit_log/audit_log.h"
|
||||
#include "modsecurity/transaction.h"
|
||||
#include "src/utils/msc_system.h"
|
||||
#include "utils/md5.h"
|
||||
#include "src/utils/md5.h"
|
||||
|
||||
|
||||
namespace modsecurity {
|
||||
|
@@ -18,7 +18,7 @@
|
||||
#ifndef SRC_AUDIT_LOG_WRITER_PARALLEL_H_
|
||||
#define SRC_AUDIT_LOG_WRITER_PARALLEL_H_
|
||||
|
||||
#include "audit_log/writer.h"
|
||||
#include "src/audit_log/writer.h"
|
||||
#include "modsecurity/transaction.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@@ -13,11 +13,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "audit_log/writer/serial.h"
|
||||
#include "src/audit_log/writer/serial.h"
|
||||
|
||||
// #include <mutex>
|
||||
|
||||
#include "audit_log/audit_log.h"
|
||||
#include "src/audit_log/audit_log.h"
|
||||
|
||||
namespace modsecurity {
|
||||
namespace audit_log {
|
||||
|
@@ -22,7 +22,7 @@
|
||||
#ifndef SRC_AUDIT_LOG_WRITER_SERIAL_H_
|
||||
#define SRC_AUDIT_LOG_WRITER_SERIAL_H_
|
||||
|
||||
#include "audit_log/writer.h"
|
||||
#include "src/audit_log/writer.h"
|
||||
#include "modsecurity/transaction.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Reference in New Issue
Block a user