Implemented multiple-pcap file download and monitor

This commit is contained in:
Luca Deri 2018-08-08 14:06:25 +02:00
parent c5fec0d13e
commit 30e22c3a71
13 changed files with 157 additions and 109 deletions

View file

@ -178,4 +178,12 @@ function format_utils.maxRateToString(max_rate)
end
end
function format_utils.formatEpoch(epoch)
if epoch == 0 then
return("-")
else
return(os.date("%d/%m/%Y %X", epoch))
end
end
return format_utils