mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +00:00
19 lines
425 B
C++
19 lines
425 B
C++
#pragma once
|
|
|
|
#include <cstdio>
|
|
|
|
#include "zeek/plugin/Plugin.h"
|
|
|
|
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
|