GlobalNOC / FlowSpaceFirewall

FlowSpace Firewall Application a floodlight based controller allowing multiple controllers to talk to a single switch, but can not interact with each others flow space (hence FlowSpace Firewall)
http://globalnoc.iu.edu/sdn/fsfw.html
Apache License 2.0
14 stars 14 forks source link

Slicer status web interface has values for max_flows and max_flows_per_sec swapped #142

Closed gth828r closed 9 years ago

gth828r commented 9 years ago

SlicerStatusResource.java has the following: results.put("max_flows_per_sec", myProxy.getSlicer().getMaxFlows()); results.put("max_flow_rule", myProxy.getSlicer().getMaxFlowRate());

I believe those lines should actually be: results.put("max_flows_per_sec", myProxy.getSlicer().getMaxFlowRate()); results.put("max_flow_rule", myProxy.getSlicer().getMaxFlows());

gth828r commented 9 years ago

I'd like to run my tests with this bug fixed, so I'm going to fix it up locally. I'll submit a PR with a fix for this based off of master.