mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
14 lines
258 B
Lua
14 lines
258 B
Lua
--
|
|
-- (C) 2013-17 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
|
|
sendHTTPHeader('text/html; charset=iso-8859-1')
|
|
|
|
sym = ntop.resolveAddress(_GET["host"])
|
|
|
|
print(sym)
|