Skip to content

Commit

Permalink
detect/icmp-id: remove prefilter pseudo check
Browse files Browse the repository at this point in the history
This is now handled at registration with SIG_MASK_REQUIRE_REAL_PKT.
  • Loading branch information
victorjulien committed Jun 18, 2024
1 parent 8df53d6 commit e3e917d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/detect-icmp-id.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e3e917d

Please sign in to comment.