From 9f8e45dc9cc77739c690f5d463854aae678efb7f Mon Sep 17 00:00:00 2001 From: Andrew Kim Date: Thu, 3 Apr 2014 17:42:35 -0500 Subject: [PATCH 1/1] Add Flood and FloodAll supported actions This patch will return Flood and FloodAll as supported actions when a switch is queried for its supported flow actions Change-Id: I8c4b8821bd773e3eb654f35a60a9f41e08deadb6 Signed-off-by: Andrew Kim --- .../protocol_plugin/openflow/internal/FlowConverter.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java index 6d1c563aa4..8893762c3c 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/FlowConverter.java @@ -806,6 +806,8 @@ public class FlowConverter { list.add(SwPath.class); list.add(HwPath.class); list.add(Drop.class); + list.add(Flood.class); + list.add(FloodAll.class); return list; } -- 2.36.6