From 0957c0f8a4b2d2421a266e62ed7f01afbd46de1c Mon Sep 17 00:00:00 2001 From: Anoop Saldanha Date: Thu, 15 Sep 2011 14:17:22 +0530 Subject: [PATCH] shutdown timeout reassembly shouldn't check timeout flag set or not on flow --- src/flow.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/flow.c b/src/flow.c index 6d4c3bb41f..9c18f753b0 100644 --- a/src/flow.c +++ b/src/flow.c @@ -1337,11 +1337,6 @@ static inline void FlowForceReassemblyForQ(FlowQueue *q) /* we need to loop through all the flows in the queue */ while (f != NULL) { - if (f->flags & FLOW_TIMEOUT_REASSEMBLY_DONE) { - f = f->lnext; - continue; - } - /* We use this packet just for reassembly purpose */ Packet reassemble_p; memset(&reassemble_p, 0, sizeof(Packet));