mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Deprecate all BroType* in BifType:: namespace
Replaced with equivalently named IntrusivePtr in zeek::BifType::
This commit is contained in:
parent
dca587c604
commit
eedeb07550
62 changed files with 287 additions and 283 deletions
|
@ -699,7 +699,7 @@ bool Manager::AutoUnpublishEvent(const string& topic, Val* event)
|
|||
|
||||
RecordVal* Manager::MakeEvent(val_list* args, Frame* frame)
|
||||
{
|
||||
auto rval = new RecordVal(BifType::Record::Broker::Event);
|
||||
auto rval = new RecordVal(zeek::BifType::Record::Broker::Event);
|
||||
auto arg_vec = make_intrusive<VectorVal>(vector_of_data_type);
|
||||
rval->Assign(1, arg_vec);
|
||||
Func* func = nullptr;
|
||||
|
@ -1351,7 +1351,7 @@ void Manager::ProcessError(broker::error err)
|
|||
}
|
||||
|
||||
mgr.Enqueue(Broker::error,
|
||||
BifType::Enum::Broker::ErrorCode->GetVal(ec),
|
||||
zeek::BifType::Enum::Broker::ErrorCode->GetVal(ec),
|
||||
make_intrusive<StringVal>(msg)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue