mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 13:08:20 +00:00

that init-plugin now generates. Also adding new test that makes sure the the skeleton created by init-plugin compiles on its own withoyt any further changes.
31 lines
789 B
C++
31 lines
789 B
C++
|
|
#ifndef BRO_PLUGIN_Demo_Hooks
|
|
#define BRO_PLUGIN_Demo_Hooks
|
|
|
|
#include <plugin/Plugin.h>
|
|
|
|
namespace plugin {
|
|
namespace Demo_Hooks {
|
|
|
|
class Plugin : public ::plugin::Plugin
|
|
{
|
|
protected:
|
|
virtual int HookLoadFile(const std::string& file, const std::string& ext);
|
|
virtual Val* HookCallFunction(const Func* func, val_list* args);
|
|
virtual bool HookQueueEvent(Event* event);
|
|
virtual void HookDrainEvents();
|
|
virtual void HookUpdateNetworkTime(double network_time);
|
|
virtual void HookBroObjDtor(void* obj);
|
|
virtual void MetaHookPre(HookType hook, const HookArgumentList& args);
|
|
virtual void MetaHookPost(HookType hook, const HookArgumentList& args, HookArgument result);
|
|
|
|
// Overridden from plugin::Plugin.
|
|
virtual plugin::Configuration Configure();
|
|
};
|
|
|
|
extern Plugin plugin;
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|