]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
modbus: align comments properly 5144/head
authorShivani Bhardwaj <shivanib134@gmail.com>
Wed, 8 Jul 2020 07:11:43 +0000 (12:41 +0530)
committerShivani Bhardwaj <shivanib134@gmail.com>
Wed, 8 Jul 2020 07:38:23 +0000 (13:08 +0530)
src/detect-modbus.h

index 2a86052ac5410674e24269b7bce7abb2ec4f81e4..2686e21f65330aaaa080e0b4094924e0d33ffc10 100644 (file)
@@ -50,14 +50,14 @@ typedef struct DetectModbusValue_ {
 } DetectModbusValue;
 
 typedef struct DetectModbus_ {
-    uint8_t             category;       /** < Modbus function code category to match */
-    uint8_t             function;       /** < Modbus function code to match */
-    uint16_t            subfunction;    /** < Modbus subfunction to match */
-    bool                has_subfunction; /** < Modbus subfunction indicator */
-    uint8_t             type;           /** < Modbus access type to match */
-    DetectModbusValue   *unit_id;       /** < Modbus unit id to match */
-    DetectModbusValue   *address;       /** < Modbus address to match */
-    DetectModbusValue   *data;          /** < Modbus data to match */
+    uint8_t             category;          /** < Modbus function code category to match */
+    uint8_t             function;          /** < Modbus function code to match */
+    uint16_t            subfunction;      /** < Modbus subfunction to match */
+    bool                has_subfunction;   /** < Modbus subfunction indicator */
+    uint8_t             type;              /** < Modbus access type to match */
+    DetectModbusValue   *unit_id;          /** < Modbus unit id to match */
+    DetectModbusValue   *address;          /** < Modbus address to match */
+    DetectModbusValue   *data;             /** < Modbus data to match */
 } DetectModbus;
 
 /* prototypes */