From b5fcf16d979fbb7e4d8ebff090d32942aed81e72 Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Thu, 17 Oct 2024 10:25:42 +0200 Subject: [PATCH] enip/detect: remove double registration of enip_command keyword As found with ./src/suricata --list-keywords | sort | uniq -c | awk '$1 > 1' --- rust/src/enip/detect.rs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/rust/src/enip/detect.rs b/rust/src/enip/detect.rs index 46361680a9..aee0afca6a 100644 --- a/rust/src/enip/detect.rs +++ b/rust/src/enip/detect.rs @@ -1558,22 +1558,6 @@ pub unsafe extern "C" fn ScDetectEnipRegister() { true, true, ); - let kw = SCSigTableElmt { - name: b"enip_command\0".as_ptr() as *const libc::c_char, - desc: b"rules for detecting EtherNet/IP command\0".as_ptr() as *const libc::c_char, - url: b"/rules/enip-keyword.html#enip_command\0".as_ptr() as *const libc::c_char, - AppLayerTxMatch: Some(command_match), - Setup: command_setup, - Free: Some(command_free), - flags: 0, - }; - G_ENIP_COMMAND_KW_ID = DetectHelperKeywordRegister(&kw); - G_ENIP_COMMAND_BUFFER_ID = DetectHelperBufferRegister( - b"enip.command\0".as_ptr() as *const libc::c_char, - ALPROTO_ENIP, - true, - true, - ); let kw = SCSigTableElmt { name: b"enip.cip_status\0".as_ptr() as *const libc::c_char, desc: b"rules for detecting EtherNet/IP cip_status\0".as_ptr() as *const libc::c_char,