-
- Downloads
Fixed SFP REST API. Forgot to add new flow's DPID to entry2dpid map, thus flow...
Fixed SFP REST API. Forgot to add new flow's DPID to entry2dpid map, thus flow removal never triggered a flow-del message to the switch. Also, added a serializer for OFFlowMod and for OFFlowModMap. The latter is for the double-map of switch-dpid --> map of flow-name --> OFFlowMod object. The former has been separated, since it a JSON serializer for OFFlowMod might come in handy in the future. A present limitation is that the JSON serializer does not use the same syntax as is used to insert a flow-mod via the SFP REST API. This might be confusing for people if they get different output than what they put in. It's a lot less work to implement the serializer as-is though. The next step will be to match the SFP syntax on a per-field basis in the OFFlowModSerializer class.
Showing
- commits.log 2350 additions, 0 deletionscommits.log
- lib/openflowj-0.3.5-SNAPSHOT-javadoc.jar 0 additions, 0 deletionslib/openflowj-0.3.5-SNAPSHOT-javadoc.jar
- lib/openflowj-0.3.5-SNAPSHOT-sources.jar 0 additions, 0 deletionslib/openflowj-0.3.5-SNAPSHOT-sources.jar
- lib/openflowj-0.3.5-SNAPSHOT-tests.jar 0 additions, 0 deletionslib/openflowj-0.3.5-SNAPSHOT-tests.jar
- lib/openflowj-0.3.5-SNAPSHOT.jar 0 additions, 0 deletionslib/openflowj-0.3.5-SNAPSHOT.jar
- src/main/java/net/floodlightcontroller/core/web/serializers/OFFlowModMapSerializer.java 61 additions, 0 deletions...ntroller/core/web/serializers/OFFlowModMapSerializer.java
- src/main/java/net/floodlightcontroller/core/web/serializers/OFFlowModSerializer.java 158 additions, 0 deletions...tcontroller/core/web/serializers/OFFlowModSerializer.java
- src/main/java/net/floodlightcontroller/hub/Hub.java 0 additions, 1 deletionsrc/main/java/net/floodlightcontroller/hub/Hub.java
- src/main/java/net/floodlightcontroller/staticflowentry/StaticFlowEntries.java 36 additions, 10 deletions...oodlightcontroller/staticflowentry/StaticFlowEntries.java
- src/main/java/net/floodlightcontroller/staticflowentry/StaticFlowEntryPusher.java 2 additions, 1 deletion...ightcontroller/staticflowentry/StaticFlowEntryPusher.java
- src/main/java/net/floodlightcontroller/staticflowentry/web/ListStaticFlowEntriesResource.java 4 additions, 4 deletions...er/staticflowentry/web/ListStaticFlowEntriesResource.java
- src/main/java/net/floodlightcontroller/staticflowentry/web/OFFlowModMap.java 26 additions, 0 deletions...loodlightcontroller/staticflowentry/web/OFFlowModMap.java
- src/main/java/net/floodlightcontroller/staticflowentry/web/StaticFlowEntryPusherResource.java 2 additions, 3 deletions...er/staticflowentry/web/StaticFlowEntryPusherResource.java
- src/main/java/net/floodlightcontroller/staticflowentry/web/StaticFlowEntryWebRoutable.java 1 addition, 1 deletion...oller/staticflowentry/web/StaticFlowEntryWebRoutable.java
- src/main/java/net/floodlightcontroller/util/ActionUtils.java 12 additions, 12 deletionssrc/main/java/net/floodlightcontroller/util/ActionUtils.java
- src/main/java/net/floodlightcontroller/util/InstructionUtils.java 7 additions, 7 deletions.../java/net/floodlightcontroller/util/InstructionUtils.java
- src/main/java/net/floodlightcontroller/util/MatchUtils.java 11 additions, 11 deletionssrc/main/java/net/floodlightcontroller/util/MatchUtils.java
Loading
Please register or sign in to comment