mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Move all Val classes to the zeek namespaces
This commit is contained in:
parent
ec9eff0bd5
commit
64332ca22c
265 changed files with 3154 additions and 3086 deletions
|
@ -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()
|
||||
|
|
|
@ -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");
|
||||
%}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue