blob: e8b2fcd97ccb9ff1f3fe81057f10a82483437ae7 [file] [log] [blame]
Rich Lane2b202a52013-10-24 17:26:15 -07001-- binary
200 03 # class
302 # type/masked
404 # length
512 34 56 78 # value
6-- python
7ofp.oxm.bsn_lag_id(0x12345678)
8-- c
9obj = of_oxm_bsn_lag_id_new(OF_VERSION_1_3);
10of_oxm_bsn_lag_id_value_set(obj, 0x12345678);
11-- java
Rich Lane376cafe2013-10-27 21:49:14 -070012builder.setValue(LagId.of(0x12345678))