mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Mark all of the aliased classes in plugin/Plugin.h deprecated, and fix all of the plugins that were using them
This commit is contained in:
parent
e77e8c4b7b
commit
7a5dae4354
76 changed files with 297 additions and 284 deletions
|
@ -61,7 +61,7 @@ std::pair<bool, IntrusivePtr<Val>> Plugin::HookFunctionCall(const Func* func,
|
|||
return {};
|
||||
}
|
||||
|
||||
void Plugin::MetaHookPre(HookType hook, const HookArgumentList& args)
|
||||
void Plugin::MetaHookPre(zeek::plugin::HookType hook, const zeek::plugin::HookArgumentList& args)
|
||||
{
|
||||
ODesc d;
|
||||
d.SetShort();
|
||||
|
@ -70,7 +70,9 @@ void Plugin::MetaHookPre(HookType hook, const HookArgumentList& args)
|
|||
hook_name(hook), d.Description());
|
||||
}
|
||||
|
||||
void Plugin::MetaHookPost(HookType hook, const HookArgumentList& args, HookArgument result)
|
||||
void Plugin::MetaHookPost(zeek::plugin::HookType hook,
|
||||
const zeek::plugin::HookArgumentList& args,
|
||||
zeek::plugin::HookArgument result)
|
||||
{
|
||||
ODesc d1;
|
||||
d1.SetShort();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue