blob: 833bb36daf9473ec3dfdaedec49ddc0bc843f64b [file] [log] [blame]
Andreas Wundsama6fb1a22013-10-22 22:20:36 -07001-- binary
200 19 # type
300 10 # length
480 00 06 06 # OXM header
500 01 02 03 04 05 # OXM value
600 00 # pad
7-- python
8ofp.action.set_field(field=ofp.oxm.eth_dst([0, 1, 2, 3, 4, 5]))
9-- java
10OFOxms oxms = OFFactories.getFactory(OFVersion.OF_13).oxms();
11builder.setField(oxms.ethDst(MacAddress.of("00:01:02:03:04:05")))