From 8fbab9bf823359ee73ccc3c5f89fcd4df61ae15a Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Mon, 15 May 2023 18:27:56 +0000 Subject: [PATCH] Decrease max filters to 90 due to stricter kernel limitations. --- src/xdpfw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdpfw.h b/src/xdpfw.h index b66389f..4be467b 100644 --- a/src/xdpfw.h +++ b/src/xdpfw.h @@ -3,7 +3,7 @@ #include #define MAX_PCKT_LENGTH 65535 -#define MAX_FILTERS 100 +#define MAX_FILTERS 90 #define MAX_TRACK_IPS 100000 #define MAX_CPUS 256