mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
18 lines
389 B
Lua
18 lines
389 B
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
require "lua_utils"
|
|
|
|
interface.select(ifname)
|
|
interface.stopLiveCapture(tonumber(_GET["capture_id"]))
|
|
|
|
sendHTTPContentTypeHeader('text/html')
|
|
|
|
print [[
|
|
<head>
|
|
<meta http-equiv="refresh" content="0; URL=/lua/live_capture_stats.lua" />
|
|
</head>
|
|
]]
|