mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
25 lines
480 B
C++
25 lines
480 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
#include "DHCP.h"
|
|
|
|
namespace plugin {
|
|
namespace Zeek_DHCP {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
AddComponent(new ::analyzer::Component("DHCP", ::analyzer::dhcp::DHCP_Analyzer::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Zeek::DHCP";
|
|
config.description = "DHCP analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|