From ecdf7df4542dcd7991d2473344313216ff264020 Mon Sep 17 00:00:00 2001 From: lucaderi Date: Thu, 25 Jun 2020 10:25:24 +0200 Subject: Compilation fixes for non-Linux (or outdated Linux) platforms --- example/ndpiSimpleIntegration.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'example/ndpiSimpleIntegration.c') diff --git a/example/ndpiSimpleIntegration.c b/example/ndpiSimpleIntegration.c index a7f3b6ef2..d5bd117d8 100644 --- a/example/ndpiSimpleIntegration.c +++ b/example/ndpiSimpleIntegration.c @@ -1,6 +1,5 @@ #include #include -#include #include #include #include @@ -20,6 +19,18 @@ #define MAX_IDLE_TIME 300000 /* msec */ #define INITIAL_THREAD_HASH 0x03dd018b +#ifndef ETH_P_IP +#define ETH_P_IP 0x0800 +#endif + +#ifndef ETH_P_IPV6 +#define ETH_P_IPV6 0x86DD +#endif + +#ifndef ETH_P_ARP +#define ETH_P_ARP 0x0806 +#endif + enum nDPI_l3_type { L3_IP, L3_IP6 }; -- cgit v1.2.3