Use zeek::BifEvent:: for enqueue_ functions instead of BifEvent::

This commit is contained in:
Jon Siwek 2020-05-14 14:48:18 -07:00
parent ca1e5fe4be
commit 7843416e51
77 changed files with 325 additions and 325 deletions

View file

@ -4,7 +4,7 @@ refine connection Foo_Conn += {
function Foo_data(msg: Foo_Message): bool
%{
auto data = make_intrusive<StringVal>(${msg.data}.length(), (const char*) ${msg.data}.data());
BifEvent::enqueue_foo_message(bro_analyzer(), bro_analyzer()->Conn(), std::move(data));
zeek::BifEvent::enqueue_foo_message(bro_analyzer(), bro_analyzer()->Conn(), std::move(data));
return true;
%}