mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
23 lines
580 B
C++
23 lines
580 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
#include "plugin/Plugin.h"
|
|
#include "IPv6.h"
|
|
#include "packet_analysis/Component.h"
|
|
|
|
namespace zeek::plugin::Zeek_IPv6 {
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
public:
|
|
zeek::plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new zeek::packet_analysis::Component("IPv6",
|
|
zeek::packet_analysis::IPv6::IPv6Analyzer::Instantiate));
|
|
|
|
zeek::plugin::Configuration config;
|
|
config.name = "Zeek::IPv6";
|
|
config.description = "IPv6 packet analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|