mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 03:58:20 +00:00
18 lines
424 B
C++
18 lines
424 B
C++
#pragma once
|
|
#include <zeek/plugin/Plugin.h>
|
|
#include <cstdio>
|
|
|
|
namespace btest::plugin::Demo_InitHooks {
|
|
|
|
|
|
class Plugin : public zeek::plugin::Plugin {
|
|
protected:
|
|
zeek::plugin::Configuration Configure() override;
|
|
void InitPreScript() override;
|
|
void InitPostScript() override;
|
|
void InitPreExecution() override;
|
|
void Done() override;
|
|
};
|
|
|
|
extern Plugin plugin;
|
|
} // namespace btest::plugin::Demo_InitHooks
|