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:
Luca Deri 2015-08-16 15:00:40 +02:00
parent 3b72506ab0
commit e59d699837
10 changed files with 281 additions and 19 deletions

View file

@ -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