mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
15 lines
339 B
Lua
15 lines
339 B
Lua
--
|
|
-- (C) 2014-22 - ntop.org
|
|
--
|
|
|
|
local dns_utils = {}
|
|
|
|
function dns_utils.getResponseStatusCode(return_code)
|
|
return(i18n("dns_info.return_codes." .. tostring(return_code)) or return_code)
|
|
end
|
|
|
|
function dns_utils.getQueryType(query_type)
|
|
return(i18n("dns_info.query_types." .. tostring(query_type)) or query_type)
|
|
end
|
|
|
|
return dns_utils
|