From 7bb99d97c33021c4e4cacb0b8dd739be5933c61f Mon Sep 17 00:00:00 2001 From: bmeeks8 Date: Wed, 30 Apr 2014 21:02:11 -0400 Subject: Allow disabling of 'Delayed Detect' feature when required. --- config/suricata/suricata_generate_yaml.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config/suricata/suricata_generate_yaml.php') diff --git a/config/suricata/suricata_generate_yaml.php b/config/suricata/suricata_generate_yaml.php index e4d2c153..3f9e307b 100644 --- a/config/suricata/suricata_generate_yaml.php +++ b/config/suricata/suricata_generate_yaml.php @@ -142,6 +142,11 @@ if (!empty($suricatacfg['inspect_recursion_limit']) || $suricatacfg['inspect_rec else $inspection_recursion_limit = ""; +if ($suricatacfg['delayed_detect'] == 'on') + $delayed_detect = "yes"; +else + $delayed_detect = "no"; + // Add interface-specific blocking settings if ($suricatacfg['blockoffenders'] == 'on') $suri_blockoffenders = "yes"; -- cgit v1.2.3