mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Use zeek::detail namespace for fuzzer utils
This commit is contained in:
parent
5a2d25c954
commit
2d0b8c0b8e
7 changed files with 17 additions and 16 deletions
|
@ -374,7 +374,8 @@ static std::vector<std::string> get_script_signature_files()
|
|||
return rval;
|
||||
}
|
||||
|
||||
zeek::SetupResult zeek::setup(int argc, char** argv, zeek::Options* zopts)
|
||||
zeek::detail::SetupResult zeek::detail::setup(int argc, char** argv,
|
||||
zeek::Options* zopts)
|
||||
{
|
||||
ZEEK_LSAN_DISABLE();
|
||||
std::set_new_handler(bro_new_handler);
|
||||
|
@ -866,7 +867,7 @@ zeek::SetupResult zeek::setup(int argc, char** argv, zeek::Options* zopts)
|
|||
return {0, std::move(options)};
|
||||
}
|
||||
|
||||
int zeek::cleanup(bool did_net_run)
|
||||
int zeek::detail::cleanup(bool did_net_run)
|
||||
{
|
||||
if ( did_net_run )
|
||||
done_with_network();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue