Skip to content
Snippets Groups Projects
Commit 75f98a50 authored by Rob Adams's avatar Rob Adams
Browse files

Only remove flows on move when the cookie is from forwarding

parent 6e38f554
No related branches found
No related tags found
No related merge requests found
......@@ -403,11 +403,14 @@ public abstract class ForwardingBase implements IOFMessageListener, IDeviceManag
OFMatch match = new OFMatch();
match.setDataLayerDestination(device.getDataLayerAddress());
match.setWildcards(OFMatch.OFPFW_ALL ^ OFMatch.OFPFW_DL_DST);
long cookie =
AppCookie.makeCookie(FORWARDING_APP_ID, 0);
OFMessage fm = ((OFFlowMod) floodlightProvider.getOFMessageFactory()
.getMessage(OFType.FLOW_MOD))
.setCommand(OFFlowMod.OFPFC_DELETE)
.setOutPort((short) OFPort.OFPP_NONE.getValue())
.setMatch(match)
.setCookie(cookie)
.setLength(U16.t(OFFlowMod.MINIMUM_LENGTH));
// Flush to all switches
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment