mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Change timer_list in BroList to be an unordered list.
This type is used by Conn and Analyzer to hold onto timers being added and removed. We don't expect the elements in those lists to maintain an order as the list is being modified.
This commit is contained in:
parent
28e5100842
commit
499a3353b5
1 changed files with 1 additions and 1 deletions
|
@ -23,4 +23,4 @@ class Attr;
|
||||||
typedef PList<Attr> attr_list;
|
typedef PList<Attr> attr_list;
|
||||||
|
|
||||||
class Timer;
|
class Timer;
|
||||||
typedef PList<Timer> timer_list;
|
typedef PList<Timer, LIST_UNORDERED> timer_list;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue