mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
26 lines
690 B
C++
26 lines
690 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "zeek/plugin/Plugin.h"
|
|
|
|
#include "zeek/packet_analysis/Component.h"
|
|
#include "zeek/packet_analysis/protocol/teredo/Teredo.h"
|
|
|
|
namespace zeek::plugin::detail::Zeek_Teredo
|
|
{
|
|
|
|
class Plugin : public zeek::plugin::Plugin
|
|
{
|
|
public:
|
|
zeek::plugin::Configuration Configure() override
|
|
{
|
|
AddComponent(new zeek::packet_analysis::Component(
|
|
"Teredo", zeek::packet_analysis::teredo::TeredoAnalyzer::Instantiate));
|
|
|
|
zeek::plugin::Configuration config;
|
|
config.name = "Zeek::Teredo";
|
|
config.description = "Teredo packet analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
} // namespace zeek::plugin::detail::Zeek_Teredo
|