zeek/src/analyzer/protocols/udp/Plugin.cc
Robin Sommer dfc4cb0881 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.
2013-04-16 20:52:03 -07:00

10 lines
242 B
C++

#include "plugin/Plugin.h"
#include "analyzer/protocols/udp/UDP.h"
BRO_PLUGIN_BEGIN(UDP)
BRO_PLUGIN_DESCRIPTION("UDP Analyzer");
BRO_PLUGIN_ANALYZER("UDP", UDP_Analyzer::InstantiateAnalyzer);
BRO_PLUGIN_BIF_FILE(events);
BRO_PLUGIN_END