mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 04:58:21 +00:00
Move Timer and PriorityQueue classes to namespaces
This commit is contained in:
parent
910aa77d95
commit
1c17700c48
33 changed files with 206 additions and 140 deletions
|
@ -240,11 +240,11 @@ protected:
|
|||
};
|
||||
|
||||
|
||||
class IPTunnelTimer final : public Timer {
|
||||
class IPTunnelTimer final : public zeek::detail::Timer {
|
||||
public:
|
||||
IPTunnelTimer(double t, NetSessions::IPPair p)
|
||||
: Timer(t + zeek::BifConst::Tunnel::ip_tunnel_timeout,
|
||||
TIMER_IP_TUNNEL_INACTIVITY), tunnel_idx(p) {}
|
||||
: zeek::detail::Timer(t + zeek::BifConst::Tunnel::ip_tunnel_timeout,
|
||||
zeek::detail::TIMER_IP_TUNNEL_INACTIVITY), tunnel_idx(p) {}
|
||||
|
||||
~IPTunnelTimer() override {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue