mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Add concept of "parent" tag namespaces
This allows us to create an EnumType that groups all of the analyzer tag values into a single type, while still having the existing types that split them up. We can then use this for certain events that benefit from taking all of the tag types at once.
This commit is contained in:
parent
7d66f4252f
commit
a7d3cb48ef
12 changed files with 147 additions and 21 deletions
|
@ -19,8 +19,8 @@ namespace zeek::file_analysis
|
|||
{
|
||||
|
||||
Manager::Manager()
|
||||
: plugin::ComponentManager<file_analysis::Component>("Files", "Tag"), current_file_id(),
|
||||
magic_state(), cumulative_files(0), max_files(0)
|
||||
: plugin::ComponentManager<file_analysis::Component>("Files", "Tag", "AllAnalyzers"),
|
||||
current_file_id(), magic_state(), cumulative_files(0), max_files(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue