From: Eric Leblond Date: Tue, 11 Jun 2019 20:05:59 +0000 (+0200) Subject: bypass: flow bypass is not ebpf only X-Git-Tag: suricata-5.0.0-rc1~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de52e78e653f580448f725aea77776cb4e19c83c;p=thirdparty%2Fsuricata.git bypass: flow bypass is not ebpf only --- diff --git a/src/flow-bypass.c b/src/flow-bypass.c index d15b44da40..5c8445a016 100644 --- a/src/flow-bypass.c +++ b/src/flow-bypass.c @@ -57,7 +57,6 @@ BypassedUpdateFuncItem updatefunclist[BYPASSFUNCMAX]; static TmEcode BypassedFlowManager(ThreadVars *th_v, void *thread_data) { -#ifdef HAVE_PACKET_EBPF int tcount = 0; int i; BypassedFlowManagerThreadData *ftd = thread_data; @@ -103,7 +102,6 @@ static TmEcode BypassedFlowManager(ThreadVars *th_v, void *thread_data) usleep(10000); } } -#endif return TM_ECODE_OK; }