blob: f1a8aa1cf0b6c3f5ba96f4f824be3ade5c395007 [file] [log] [blame]
Rich Lane2b202a52013-10-24 17:26:15 -07001-- binary
200 19 # type
300 10 # length
400 03 02 04 # OXM header
512 34 56 78 # OXM value
600 00 00 00 # pad
7-- python
8ofp.action.set_field(field=ofp.oxm.bsn_lag_id(0x12345678))
9-- java
10OFOxms oxms = OFFactories.getFactory(OFVersion.OF_13).oxms();
Rich Lane376cafe2013-10-27 21:49:14 -070011builder.setField(oxms.bsnLagId(LagId.of(0x12345678)))