From 70eea3e523081fc59ca13611d1c53a3c12d70e89 Mon Sep 17 00:00:00 2001 From: Aryan Srivastava Date: Thu, 25 Jan 2024 10:59:18 +1300 Subject: [PATCH] ipt_netmap: Add header file for skb_gso_segment skb_gso_segment prototype declaration has moved into a new file, the linux 6.6 kernel. Include this file to continue building ipt_netmap. --- LINUX/ipt_netmap/ipt_netmap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/LINUX/ipt_netmap/ipt_netmap.c b/LINUX/ipt_netmap/ipt_netmap.c index 66a60afa4..9ff09b5a3 100644 --- a/LINUX/ipt_netmap/ipt_netmap.c +++ b/LINUX/ipt_netmap/ipt_netmap.c @@ -24,6 +24,7 @@ #include #include #include +#include #include "ipt_netmap.h" MODULE_LICENSE("GPL");