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:
Tim Wojtulewicz 2020-04-30 13:27:29 -07:00
parent 28e5100842
commit 499a3353b5

View file

@ -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;