mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00

This is based on commit 2731def9159247e6da8a3191783c89683363689c from the zeek-docs repo.
17 lines
320 B
C++
17 lines
320 B
C++
|
|
#pragma once
|
|
|
|
#include <zeek/plugin/Plugin.h>
|
|
|
|
namespace plugin {
|
|
namespace Zeek_ConnKey_Vxlan_Vni_Fivetuple {
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
protected:
|
|
zeek::plugin::Configuration Configure() override;
|
|
};
|
|
|
|
extern Plugin plugin;
|
|
|
|
} // namespace Zeek_ConnKey_Vxlan_Vni_Fivetuple
|
|
} // namespace plugin
|