mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
test/builtin-plugins: Add plugin using ZEEK_VERSION_NUMBER
This commit is contained in:
parent
9971121509
commit
83dd7cf580
8 changed files with 71 additions and 1 deletions
|
@ -0,0 +1,20 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <zeek/plugin/Plugin.h>
|
||||
|
||||
namespace btest::plugin::Demo_Version
|
||||
{
|
||||
|
||||
class Plugin : public zeek::plugin::Plugin
|
||||
{
|
||||
protected:
|
||||
// Overridden from zeek::plugin::Plugin.
|
||||
zeek::plugin::Configuration Configure() override;
|
||||
|
||||
void InitPostScript() override;
|
||||
};
|
||||
|
||||
extern Plugin plugin;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue