aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.c
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2021-08-09 16:45:03 +0200
committerLuca Deri <deri@ntop.org>2021-08-09 16:45:03 +0200
commit58ca7b5a7f48e14655083bea02b47b9dc7aa1627 (patch)
tree174a74b4a7db8bd2e404a293870e70680c5df60d /example/reader_util.c
parent0df8aa19ec9e4f08515bc42f09ed562fe7af8eb3 (diff)
Added protocol defines
Diffstat (limited to 'example/reader_util.c')
-rw-r--r--example/reader_util.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index bc7444f31..bd2d0d202 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -40,22 +40,7 @@
#include "reader_util.h"
-#ifndef ETH_P_IP
-#define ETH_P_IP 0x0800 /* IPv4 */
-#endif
-
-#ifndef ETH_P_IPv6
-#define ETH_P_IPV6 0x86dd /* IPv6 */
-#endif
-
-#define SLARP 0x8035 /* Cisco Slarp */
-#define CISCO_D_PROTO 0x2000 /* Cisco Discovery Protocol */
-
-#define VLAN 0x8100
-#define MPLS_UNI 0x8847
-#define MPLS_MULTI 0x8848
-#define PPPoE 0x8864
-#define SNAP 0xaa
+#define SNAP 0XAA
#define BSTP 0x42 /* Bridge Spanning Tree Protocol */
/* Keep last 32 packets */
@@ -1834,7 +1819,7 @@ struct ndpi_proto ndpi_workflow_process_packet(struct ndpi_workflow * workflow,
recheck_type = 1;
break;
- case PPPoE:
+ case PPPOE:
workflow->stats.pppoe_count++;
type = ETH_P_IP;
ip_offset += 8;