From 5f82251c7906ca4ce1e8102fc7eb902bf8eee779 Mon Sep 17 00:00:00 2001 From: kdewanga Date: Thu, 19 May 2022 04:58:43 +0000 Subject: [PATCH] libdaq: added new flag to skip Elephant flow processing --- api/daq_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/api/daq_common.h b/api/daq_common.h index 34a489c..4e184cf 100644 --- a/api/daq_common.h +++ b/api/daq_common.h @@ -126,6 +126,7 @@ typedef struct _daq_msg #define DAQ_PKT_FLAG_REV_FLOW 0x2000 /* The packet is going the reverse direction of the flow initiator.*/ #define DAQ_PKT_FLAG_DEBUG_ENABLED 0x4000 /* The packet has been flagged for debugging by the lower layer. */ #define DAQ_PKT_FLAG_SIGNIFICANT_GROUPS 0x8000 /* Interface groups should be used for flow classification. */ +#define DAQ_PKT_FLAG_SKIP_EF 0x10000 /* Skip processing for EF. */ #define DAQ_PKTHDR_UNKNOWN -1 /* Ingress or Egress not known */ #define DAQ_PKTHDR_FLOOD -2 /* Egress is flooding */