From e47a9b59e953ffdf5bf66518f3f8bdfc9b1c4a32 Mon Sep 17 00:00:00 2001 From: Anoop Saldanha Date: Mon, 27 Sep 2010 00:02:07 +0530 Subject: [PATCH] accept tcp packets with syn+urg+push --- src/stream-tcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stream-tcp.c b/src/stream-tcp.c index c838f0d079..184c69c87a 100644 --- a/src/stream-tcp.c +++ b/src/stream-tcp.c @@ -597,6 +597,7 @@ static int StreamTcpPacketStateNone(ThreadVars *tv, Packet *p, case TH_SYN | TH_PUSH: case TH_SYN | TH_URG: case TH_SYN: + case TH_SYN|TH_PUSH|TH_URG: { if (ssn == NULL) { ssn = StreamTcpNewSession(p);