mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
EventMgr: Drop src_val
This is a left over and hasn't been used since a while.
This commit is contained in:
parent
277e6d4129
commit
bef923ebeb
2 changed files with 0 additions and 4 deletions
|
@ -69,7 +69,6 @@ EventMgr::EventMgr() {
|
||||||
current_src = util::detail::SOURCE_LOCAL;
|
current_src = util::detail::SOURCE_LOCAL;
|
||||||
current_aid = 0;
|
current_aid = 0;
|
||||||
current_ts = 0;
|
current_ts = 0;
|
||||||
src_val = nullptr;
|
|
||||||
draining = false;
|
draining = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,8 +78,6 @@ EventMgr::~EventMgr() {
|
||||||
Unref(head);
|
Unref(head);
|
||||||
head = n;
|
head = n;
|
||||||
}
|
}
|
||||||
|
|
||||||
Unref(src_val);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void EventMgr::Enqueue(const EventHandlerPtr& h, Args vl, util::detail::SourceID src, analyzer::ID aid, Obj* obj,
|
void EventMgr::Enqueue(const EventHandlerPtr& h, Args vl, util::detail::SourceID src, analyzer::ID aid, Obj* obj,
|
||||||
|
|
|
@ -123,7 +123,6 @@ protected:
|
||||||
util::detail::SourceID current_src;
|
util::detail::SourceID current_src;
|
||||||
analyzer::ID current_aid;
|
analyzer::ID current_aid;
|
||||||
double current_ts;
|
double current_ts;
|
||||||
RecordVal* src_val;
|
|
||||||
bool draining;
|
bool draining;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue