mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Working on TODOs.
- Introducing analyzer::<protocol> namespaces. - Moving protocol-specific events out of events.bif into analyzer/protocol/<protocol>/events.bif - Moving ARP over (even though it's not an actual analyzer). - Moving NetFlow over (even though it's not an actual analyzer). - Moving MIME over (even though it's not an actual analyzer).
This commit is contained in:
parent
dfc4cb0881
commit
5dc630f722
210 changed files with 7080 additions and 6608 deletions
|
@ -33,13 +33,13 @@
|
|||
std::list<std::pair<const char*, int> > __bif_##file##_init(); \
|
||||
AddBifInitFunction(&__bif_##file##_init);
|
||||
|
||||
#define BRO_PLUGIN_ANALYZER(tag, factory) \
|
||||
AddComponent(new ::analyzer::Component(tag, factory));
|
||||
#define BRO_PLUGIN_ANALYZER(tag, cls) \
|
||||
AddComponent(new ::analyzer::Component(tag, ::analyzer::cls::InstantiateAnalyzer));
|
||||
|
||||
#define BRO_PLUGIN_ANALYZER_BARE(tag) \
|
||||
AddComponent(new ::analyzer::Component(tag, 0));
|
||||
|
||||
#define BRO_PLUGIN_SUPPORT_ANALYZER(tag) \
|
||||
AddComponent(new ::analyzer::Component(tag, 0));
|
||||
|
||||
#define BRO_PLUGIN_ANALYZER_EXT(tag, factory, enabled, partial) \
|
||||
AddComponent(new ::analyzer::Component(tag, factory, 0, enabled, partial));
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue