ntopng/scripts/callbacks/interface/dequeue_flows_for_hooks.lua

15 lines
429 B
Lua

--
-- (C) 2019-20 - ntop.org
--
-- ########################################################
-- Dequeue flows for the execution of periodic scripts
while not ntop.isShutdown() and not ntop.isDeadlineApproaching() do
interface.dequeueFlowsForHooks(131072 --[[ protocolDetected --]], 16384 --[[ periodicUpdate --]], 131072 --[[ flowEnd --]])
ntop.msleep(1)
end
-- ########################################################