aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-ids/suricata/files/0001-af-packet-fix-build-on-recent-Linux-kernels.patch
blob: 74e9a56c18f4813b3c399e7c3125070953556df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From b37554e0bc3cf383e6547c5c6a69c6f6849c09e3 Mon Sep 17 00:00:00 2001
From: Eric Leblond <eric@regit.org>
Date: Wed, 17 Jul 2019 12:35:12 +0200
Subject: [PATCH] af-packet: fix build on recent Linux kernels

Upstream-Status: Backport
Signed-off-by: Armin kuster <akuster808@gmail.com>
---
 src/source-af-packet.c | 4 ++++
 1 file changed, 4 insertions(+)

Index: suricata-4.1.4/src/source-af-packet.c
===================================================================
--- suricata-4.1.4.orig/src/source-af-packet.c
+++ suricata-4.1.4/src/source-af-packet.c
@@ -64,6 +64,10 @@
 #include <sys/ioctl.h>
 #endif
 
+#if HAVE_LINUX_SOCKIOS_H
+#include <linux/sockios.h>
+#endif
+
 #ifdef HAVE_PACKET_EBPF
 #include "util-ebpf.h"
 #include <bpf/libbpf.h>