diff --git a/src/xdpfw.c b/src/xdpfw.c index db9e177..a1a1181 100644 --- a/src/xdpfw.c +++ b/src/xdpfw.c @@ -17,8 +17,8 @@ #include "../libbpf/src/bpf.h" #include "../libbpf/src/libbpf.h" -#include "include/xdpfw.h" -#include "include/config.h" +#include "xdpfw.h" +#include "config.h" // Command line variables. static char *configFile; diff --git a/src/xdpfw_kern.c b/src/xdpfw_kern.c index 800cbda..969457d 100644 --- a/src/xdpfw_kern.c +++ b/src/xdpfw_kern.c @@ -15,7 +15,7 @@ #include "../libbpf/src/bpf_helpers.h" -#include "include/xdpfw.h" +#include "xdpfw.h" //#define DEBUG //#define DOSTATSONBLOCKMAP // Feel free to comment this out if you don't want the `blocked` entry on the stats map to be incremented every single time a packet is dropped from the source IP being on the blocked map. Commenting this line out should increase performance when blocking malicious traffic.