mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-11 02:26:43 +00:00
15 lines
429 B
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
|
|
|
|
-- ########################################################
|
|
|