-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial test of optical OXC experimenter messages
- Loading branch information
Praseed Balakrishnan
committed
Sep 4, 2014
1 parent
e9f250b
commit 16287fb
Showing
7 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,4 +57,6 @@ public enum MatchFields { | |
BSN_UDF7, | ||
BSN_TCP_FLAGS, | ||
BSN_VLAN_XLATE_PORT_GROUP_ID, | ||
OCH_SIGID, | ||
OCH_SIGTYPE; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...written/src/test/java/org/projectfloodlight/protocol/match/MatchFieldIteration13Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
package org.projectfloodlight.protocol.match; | ||
|
||
import org.junit.Test; | ||
import org.projectfloodlight.openflow.protocol.OFFactories; | ||
import org.projectfloodlight.openflow.protocol.OFVersion; | ||
import org.projectfloodlight.openflow.protocol.match.Match; | ||
import org.projectfloodlight.openflow.protocol.match.MatchField; | ||
import org.projectfloodlight.openflow.types.U64; | ||
|
||
public class MatchFieldIteration13Test extends MatchFieldIterationBase { | ||
public MatchFieldIteration13Test() { | ||
super(OFFactories.getFactory(OFVersion.OF_13)); | ||
} | ||
|
||
@Test | ||
public void matchCircuitFields() | ||
{ | ||
Match.Builder builder = factory.buildMatchV3().setExact(MatchField | ||
.OCH_SIGTYPE, U64.ZERO); | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters