mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 19:48:20 +00:00

This is a checkpoint, it works but there's more cleanup to do. TODOs in src/analyzer/protocols/TODO.
10 lines
242 B
C++
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
|