mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
Moving all analyzers over to new structure.
This is a checkpoint, it works but there's more cleanup to do. TODOs in src/analyzer/protocols/TODO.
This commit is contained in:
parent
56edef1646
commit
dfc4cb0881
250 changed files with 1095 additions and 470 deletions
13
src/analyzer/protocols/tcp/Plugin.cc
Normal file
13
src/analyzer/protocols/tcp/Plugin.cc
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
#include "plugin/Plugin.h"
|
||||
|
||||
#include "TCP.h"
|
||||
|
||||
BRO_PLUGIN_BEGIN(TCP)
|
||||
BRO_PLUGIN_DESCRIPTION("TCP Analyzer");
|
||||
BRO_PLUGIN_ANALYZER("TCP", TCP_Analyzer::InstantiateAnalyzer);
|
||||
BRO_PLUGIN_ANALYZER("TCPStats", TCPStats_Analyzer::InstantiateAnalyzer);
|
||||
BRO_PLUGIN_SUPPORT_ANALYZER("ContentLine");
|
||||
BRO_PLUGIN_SUPPORT_ANALYZER("Contents");
|
||||
BRO_PLUGIN_BIF_FILE(events);
|
||||
BRO_PLUGIN_END
|
Loading…
Add table
Add a link
Reference in a new issue