mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
Annotate scheduled events with intended timestamp.
This commit is contained in:
parent
fa84d2896a
commit
ae152f1777
7 changed files with 73 additions and 6 deletions
|
@ -92,9 +92,9 @@ EventMgr::~EventMgr()
|
|||
}
|
||||
|
||||
void EventMgr::Enqueue(const EventHandlerPtr& h, Args vl, util::detail::SourceID src,
|
||||
analyzer::ID aid, Obj* obj)
|
||||
analyzer::ID aid, Obj* obj, double ts)
|
||||
{
|
||||
QueueEvent(new Event(h, std::move(vl), src, aid, obj));
|
||||
QueueEvent(new Event(h, std::move(vl), src, aid, obj, ts));
|
||||
}
|
||||
|
||||
void EventMgr::QueueEvent(Event* event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue