From e3e917d96751016f3d9843aca5d8546e615be142 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 18 Jun 2024 06:54:28 +0200 Subject: [PATCH] detect/icmp-id: remove prefilter pseudo check This is now handled at registration with SIG_MASK_REQUIRE_REAL_PKT. --- src/detect-icmp-id.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/detect-icmp-id.c b/src/detect-icmp-id.c index d8727c7aa47c..f29cc0f74765 100644 --- a/src/detect-icmp-id.c +++ b/src/detect-icmp-id.c @@ -75,9 +75,6 @@ void DetectIcmpIdRegister (void) static inline bool GetIcmpId(Packet *p, uint16_t *id) { - if (PKT_IS_PSEUDOPKT(p)) - return false; - uint16_t pid; if (PacketIsICMPv4(p)) { switch (p->icmp_s.type) {