Fix the pseudo packet having the wrong proto set, causing massive fp's. Flag packets to be part of the established phase of a tcp session, so we won't prematurely inspect the app layer state.

remotes/origin/master-1.1.x
Victor Julien 15 years ago
parent 8b5f553a35
commit 3857154f4b

@ -3470,6 +3470,7 @@ Packet *StreamTcpPseudoSetup(Packet *parent, uint8_t *pkt, uint32_t len)
/* copy packet and set lenght, proto */
p->tunnel_proto = parent->proto;
p->proto = parent->proto;
PacketCopyData(p, pkt, len);
p->recursion_level = parent->recursion_level + 1;
p->ts.tv_sec = parent->ts.tv_sec;

Loading…
Cancel
Save