]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
patched around shutdown issue after reload
authorRuss Combs <rucombs@cisco.com>
Mon, 10 Nov 2014 13:42:11 +0000 (08:42 -0500)
committerRuss Combs <rucombs@cisco.com>
Mon, 10 Nov 2014 13:42:11 +0000 (08:42 -0500)
ChangeLog
src/managers/inspector_manager.cc

index b9cbfea60a68341ef341c22a8feb7f71351c3f57..b9e59fc1fc9376a0b414b68176e88cfb9bbc81fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,7 @@
 -- fix icmp session cleanup counting
 -- fix null flow_con in print mode
 -- fixed udp session timeout counting
+-- patched around shutdown issue after reload
 
 127
 -- REG_TEST out logging tcp options for rebuilt packets to match snort bug
index c79c9fcef0630b55b694ba248412c6d32e6829b6..ff74191fe0ce9ca4227ad7d6820890a9e43539da 100644 (file)
@@ -493,7 +493,9 @@ void InspectorManager::thread_stop(SnortConfig*)
     if ( pi && pi->framework_policy )
     {
         for ( auto* p : pi->framework_policy->ilist )
-            if ( !p->pp_class.init )
+            // FIXIT-H init set after reload preventing call to
+            // StreamBase::tterm() which is bad, m'kay?
+            //if ( !p->pp_class.init )
             {
                 p->handler->tterm();
                 p->pp_class.init = true;