mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
11 lines
216 B
Lua
11 lines
216 B
Lua
--
|
|
-- (C) 2014-22 - ntop.org
|
|
--
|
|
|
|
local http_utils = {}
|
|
|
|
function http_utils.getResponseStatusCode(return_code)
|
|
return(i18n("http_info.return_codes." .. tostring(return_code)) or return_code)
|
|
end
|
|
|
|
return http_utils
|