const char** buffers; // null terminated list of exported buffers
const char* service; // nullptr when type != IT_SERVICE
- //ServiceTag tags; // null terminated list of tags
// main thread funcs - parse time data only
InspectFunc init; // allocate process static data
static void show_help(SnortConfig* sc, const char* val, HelpType ht)
{
+ snort_conf = new SnortConfig;
PluginManager::load_plugins(sc->plugin_path);
ModuleManager::init();
}
ModuleManager::term();
PluginManager::release_plugins();
+ delete snort_conf;
exit(0);
}