mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Move Dictionary/PDict, List/PList, and Queue/PQueue to zeek namespace
This commit is contained in:
parent
4a1e17f4e0
commit
464efbe66a
30 changed files with 172 additions and 138 deletions
|
@ -28,12 +28,12 @@ std::set<std::string> val_to_topic_set(zeek::Val* val)
|
|||
rval.emplace(val->AsString()->CheckString());
|
||||
else
|
||||
{
|
||||
const PDict<zeek::TableEntryVal>* tbl = val->AsTable();
|
||||
const zeek::PDict<zeek::TableEntryVal>* tbl = val->AsTable();
|
||||
|
||||
if ( tbl->Length() == 0 )
|
||||
return rval;
|
||||
|
||||
IterCookie* c = tbl->InitForIteration();
|
||||
zeek::IterCookie* c = tbl->InitForIteration();
|
||||
HashKey* k;
|
||||
|
||||
while ( tbl->NextEntry(k, c) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue