Merge in SNORT/snort3 from ~RAMANKS/snort3:geneve to master
Squashed commit of the following:
commit
169354f17567c641331058dfde01b03934790486
Author: Raman Krishnan <ramanks@cisco.com>
Date: Tue Nov 29 16:07:44 2022 -0800
geneve: If daq has the capability, do not bypass geneve tunnel
#]=======================================================================]
find_package(PkgConfig)
-pkg_check_modules(PC_DAQ libdaq>=3.0.7)
+pkg_check_modules(PC_DAQ libdaq>=3.0.10)
# Use DAQ_INCLUDE_DIR_HINT and DAQ_LIBRARIES_DIR_HINT from configure_cmake.sh as primary hints
# and then package config information after that.
daq_tunnel_mask |= TUNNEL_6IN6;
if (caps & DAQ_CAPA_DECODE_MPLS)
daq_tunnel_mask |= TUNNEL_MPLS;
+ if (caps & DAQ_CAPA_DECODE_GENEVE)
+ daq_tunnel_mask |= TUNNEL_GENEVE;
}
}