Implement initial flow score support

This commit is contained in:
emanuele-f 2019-08-30 17:15:40 +02:00
parent d2fc1f3b0b
commit 2d02de6cc1
11 changed files with 169 additions and 7 deletions

View file

@ -2435,3 +2435,14 @@ function getFlowsTableTitle()
end
-- #######################
-- A one line flow description
function shortFlowLabel(flow)
return(string.format("[%s] %s:%d -> %s:%s [%s]", flow["proto.l4"],
flow["cli.ip"], flow["cli.port"],
flow["srv.ip"], flow["srv.port"],
flow["proto.ndpi"]
))
end
-- #######################