flow/bypass: don't bypass on flow timeout pseudo packets

pull/5376/head
Victor Julien 6 years ago
parent cc2c7b731a
commit 8cd82486e2

@ -407,6 +407,9 @@ void PacketDefragPktSetupParent(Packet *parent)
*/ */
void PacketBypassCallback(Packet *p) void PacketBypassCallback(Packet *p)
{ {
if (PKT_IS_PSEUDOPKT(p))
return;
#ifdef CAPTURE_OFFLOAD #ifdef CAPTURE_OFFLOAD
/* Don't try to bypass if flow is already out or /* Don't try to bypass if flow is already out or
* if we have failed to do it once */ * if we have failed to do it once */

Loading…
Cancel
Save