Added mapping for DNS and HTTP (#6424) and removed duplicated info (#6425)

This commit is contained in:
MatteoBiscosi 2022-03-17 11:30:15 +01:00
parent 11ed60cafb
commit fb657480c3
7 changed files with 243 additions and 38 deletions

View file

@ -0,0 +1,11 @@
--
-- (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