mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
21 lines
357 B
C++
21 lines
357 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
|
|
#include "plugin/Plugin.h"
|
|
|
|
namespace plugin {
|
|
namespace Bro_ARP {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure()
|
|
{
|
|
plugin::Configuration config;
|
|
config.name = "Bro::ARP";
|
|
config.description = "ARP Parsing";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|