Squashed commit of the following:
commit
e92e548a1d23179ecdd14ffc76ec9148580f4158
Author: davis mcpherson <davmcphe@cisco.com>
Date: Mon Oct 12 16:11:00 2020 -0400
stream_tcp: don't attempt to drop 'meta_ack packets', there is no wire packet for these acks
bool TcpNormalizer::packet_dropper(
TcpNormalizerState& tns, TcpSegmentDescriptor& tsd, NormFlags f)
{
+ if ( tsd.is_meta_ack_packet() )
+ return false;
+
const int8_t mode = (f == NORM_TCP_BLOCK) ? tns.tcp_block : tns.opt_block;
tcp_norm_stats[PC_TCP_BLOCK][mode]++;