mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 20:18:20 +00:00
Move Frame and Scope to zeek::detail namespace
This commit is contained in:
parent
64332ca22c
commit
937a462e70
50 changed files with 306 additions and 257 deletions
|
@ -376,7 +376,7 @@ int Plugin::HookLoadFile(const LoadType type, const std::string& file, const std
|
|||
}
|
||||
|
||||
std::pair<bool, zeek::ValPtr>
|
||||
Plugin::HookFunctionCall(const Func* func, Frame* parent,
|
||||
Plugin::HookFunctionCall(const Func* func, zeek::detail::Frame* parent,
|
||||
zeek::Args* args)
|
||||
{
|
||||
val_list vlargs(args->size());
|
||||
|
@ -395,7 +395,8 @@ Plugin::HookFunctionCall(const Func* func, Frame* parent,
|
|||
return {handled, {zeek::AdoptRef{}, result}};
|
||||
}
|
||||
|
||||
std::pair<bool, zeek::Val*> Plugin::HookCallFunction(const Func* func, Frame *parent, val_list* args)
|
||||
std::pair<bool, zeek::Val*> Plugin::HookCallFunction(
|
||||
const Func* func, zeek::detail::Frame *parent, val_list* args)
|
||||
{
|
||||
std::pair<bool, zeek::Val*> result(false, NULL);
|
||||
return result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue