Implements broadcast addresses per local network

Implements #571
This commit is contained in:
Simone Mainardi 2017-07-31 18:45:49 +02:00
parent 4b31f36ae1
commit a7b41075e4
20 changed files with 111 additions and 62 deletions

View file

@ -125,13 +125,15 @@ if not isEmptyString(flowhosts_type) then
end
if not isEmptyString(traffic_type) then
if traffic_type == "unicast" then
if traffic_type:contains("unicast") then
pageinfo["unicast"] = true
else
pageinfo["unicast"] = false
end
pageinfo["unidirectional"] = true
if traffic_type:contains("one_way") then
pageinfo["unidirectional"] = true
end
end
if not isEmptyString(flow_status) then