Fixes spellings and typos

Thank goes to
Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2017-03-03 04:28:20 +00:00 committed by Simone Mainardi
parent 0b29b4b7ed
commit 78e78c018c
75 changed files with 212 additions and 212 deletions

View file

@ -87,7 +87,7 @@ interface.select(ifname)
local a2z = false
if(sortOrder == "desc") then a2z = false else a2z = true end
local paginfo = {
local pageinfo = {
["sortColumn"] = sortColumn, ["toSkip"] = to_skip, ["maxHits"] = perPage,
["a2zSortOrder"] = a2z,
["hostFilter"] = host,
@ -96,8 +96,8 @@ local paginfo = {
}
if application ~= nil and application ~= "" then
paginfo["l7protoFilter"] = interface.getnDPIProtoId(application)
--print(paginfo["l7protoFilter"].." / "..application)
pageinfo["l7protoFilter"] = interface.getnDPIProtoId(application)
--print(pageinfo["l7protoFilter"].." / "..application)
end
if not isEmptyString(flowhosts_type) then
@ -120,7 +120,7 @@ if not isEmptyString(ipversion) then
paginfo["ipVersion"] = tonumber(ipversion)
end
local flows_stats = interface.getFlowsInfo(host, paginfo)
local flows_stats = interface.getFlowsInfo(host, pageinfo)
local total = flows_stats["numFlows"]
flows_stats = flows_stats["flows"]