Move all Val classes to the zeek namespaces

This commit is contained in:
Tim Wojtulewicz 2020-06-24 16:55:28 -04:00
parent ec9eff0bd5
commit 64332ca22c
265 changed files with 3154 additions and 3086 deletions

View file

@ -47,7 +47,7 @@ void PcapSource::Close()
Closed();
if ( Pcap::file_done )
mgr.Enqueue(Pcap::file_done, zeek::make_intrusive<StringVal>(props.path));
mgr.Enqueue(Pcap::file_done, zeek::make_intrusive<zeek::StringVal>(props.path));
}
void PcapSource::OpenLive()

View file

@ -96,8 +96,8 @@ function error%(%): string
{
const char* err = ps->ErrorMsg();
if ( *err )
return zeek::make_intrusive<StringVal>(err);
return zeek::make_intrusive<zeek::StringVal>(err);
}
return zeek::make_intrusive<StringVal>("no error");
return zeek::make_intrusive<zeek::StringVal>("no error");
%}