zeek/src/analyzer/protocol/dce-rpc/Plugin.cc
Arne Welzel 4958c56c84 Add missing "COPYING" in file comments
This was just done via sed. There's a number of files that don't
have a license entry at all.
2024-12-06 11:55:46 +01:00

21 lines
662 B
C++

// See the file "COPYING" in the main distribution directory for copyright.
#include "zeek/plugin/Plugin.h"
#include "zeek/analyzer/protocol/dce-rpc/DCE_RPC.h"
namespace zeek::plugin::detail::Zeek_DCE_RPC {
class Plugin : public zeek::plugin::Plugin {
public:
zeek::plugin::Configuration Configure() override {
AddComponent(new zeek::analyzer::Component("DCE_RPC", zeek::analyzer::dce_rpc::DCE_RPC_Analyzer::Instantiate));
zeek::plugin::Configuration config;
config.name = "Zeek::DCE_RPC";
config.description = "DCE-RPC analyzer";
return config;
}
} plugin;
} // namespace zeek::plugin::detail::Zeek_DCE_RPC