mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Implements download link for nindex records
This commit is contained in:
parent
15c669daa9
commit
69724f8cdd
2 changed files with 15 additions and 1 deletions
|
|
@ -4143,6 +4143,20 @@ end
|
|||
|
||||
-- ###########################################
|
||||
|
||||
function build_query_params(params)
|
||||
|
||||
local query = "?"
|
||||
local t = {}
|
||||
|
||||
for key, value in pairs(params) do
|
||||
t[#t+1] = string.format("%s=%s", key, value)
|
||||
end
|
||||
|
||||
return query .. table.concat(t, '&')
|
||||
end
|
||||
|
||||
-- ###########################################
|
||||
|
||||
function create_ndpi_proto_name(v)
|
||||
local app = ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue