mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
Added initial work towards a new historical interface. In the Interfaces->name->Historical Actitivity it is now possible to see top flows when -F "mysql;...." is used
This commit is contained in:
parent
3b72506ab0
commit
e59d699837
10 changed files with 281 additions and 19 deletions
|
|
@ -491,4 +491,18 @@ l4_template = {
|
|||
[254] = "DIVERT"
|
||||
}
|
||||
|
||||
function l4ProtoToName(value)
|
||||
value = tonumber(value)
|
||||
|
||||
for k,v in pairs(l4_template) do
|
||||
if(k == value) then
|
||||
return(v)
|
||||
end
|
||||
end
|
||||
|
||||
return(value)
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue