From 8cd82486e299cefa2ca153e505d9ff4c6fcde92a Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 7 Sep 2020 12:57:59 +0200 Subject: [PATCH] flow/bypass: don't bypass on flow timeout pseudo packets --- src/decode.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/decode.c b/src/decode.c index 20f4f06ae2..14506588b9 100644 --- a/src/decode.c +++ b/src/decode.c @@ -407,6 +407,9 @@ void PacketDefragPktSetupParent(Packet *parent) */ void PacketBypassCallback(Packet *p) { + if (PKT_IS_PSEUDOPKT(p)) + return; + #ifdef CAPTURE_OFFLOAD /* Don't try to bypass if flow is already out or * if we have failed to do it once */ -- 2.47.2