mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
24 lines
526 B
C++
24 lines
526 B
C++
// See the file in the main distribution directory for copyright.
|
|
|
|
#include "GTPv1.h"
|
|
#include "plugin/Plugin.h"
|
|
#include "analyzer/Component.h"
|
|
|
|
namespace plugin {
|
|
namespace Zeek_GTPv1 {
|
|
|
|
class Plugin : public plugin::Plugin {
|
|
public:
|
|
plugin::Configuration Configure() override
|
|
{
|
|
AddComponent(new ::analyzer::Component("GTPv1", ::analyzer::gtpv1::GTPv1_Analyzer::Instantiate));
|
|
|
|
plugin::Configuration config;
|
|
config.name = "Zeek::GTPv1";
|
|
config.description = "GTPv1 analyzer";
|
|
return config;
|
|
}
|
|
} plugin;
|
|
|
|
}
|
|
}
|