-- -- (C) 2013-16 - ntop.org -- dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path require "lua_utils" local json = require("dkjson") sendHTTPHeader('application/json; charset=iso-8859-1') local action = _GET["action"] interface.select(ifname) local res = { ["status"] = "ok" } if haveAdminPrivileges() then if action == "reset_interface_packet_drops" then interface.resetPacketDrops() end else res["status"] = "unauthorized" end print(json.encode(res, nil))