mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00
25 lines
606 B
C++
25 lines
606 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "DNS.h"
|
|
#include "plugin/Plugin.h"
|
|
#include "analyzer/Component.h"
|
|
|
|
namespace plugin {
|
|
namespace Zeek_DNS {
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
public:
|
|
zeek::plugin::Configuration Configure() override
|
|
{
|
|
AddComponent(new zeek::analyzer::Component("DNS", ::analyzer::dns::DNS_Analyzer::Instantiate));
|
|
AddComponent(new zeek::analyzer::Component("Contents_DNS", nullptr));
|
|
|
|
zeek::plugin::Configuration config;
|
|
config.name = "Zeek::DNS";
|
|
config.description = "DNS analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|