Jonathan Hart
Committed by Gerrit Code Review

Add a case to handle 1.3 set-field actions when parsing flow entries.

The handling is not actually implemented, I just want to suppress the log
message for now. I have a task on Jira to actually implement this: ONOS-333

Change-Id: I9b230e7c602a61f3c2a0c35ae04ae06e305cd439
...@@ -184,6 +184,9 @@ public class FlowEntryBuilder { ...@@ -184,6 +184,9 @@ public class FlowEntryBuilder {
184 log.warn("Unsupported OFActionExperimenter {}", exp.getExperimenter()); 184 log.warn("Unsupported OFActionExperimenter {}", exp.getExperimenter());
185 } 185 }
186 break; 186 break;
187 + case SET_FIELD:
188 + // TODO handle 1.3 set field actions correctly
189 + break;
187 case SET_TP_DST: 190 case SET_TP_DST:
188 case SET_TP_SRC: 191 case SET_TP_SRC:
189 case POP_MPLS: 192 case POP_MPLS:
...@@ -192,7 +195,6 @@ public class FlowEntryBuilder { ...@@ -192,7 +195,6 @@ public class FlowEntryBuilder {
192 case PUSH_MPLS: 195 case PUSH_MPLS:
193 case PUSH_PBB: 196 case PUSH_PBB:
194 case PUSH_VLAN: 197 case PUSH_VLAN:
195 - case SET_FIELD:
196 case SET_MPLS_LABEL: 198 case SET_MPLS_LABEL:
197 case SET_MPLS_TC: 199 case SET_MPLS_TC:
198 case SET_MPLS_TTL: 200 case SET_MPLS_TTL:
......