blob: e8b2fcd97ccb9ff1f3fe81057f10a82483437ae7 [file] [log] [blame]
-- binary
00 03 # class
02 # type/masked
04 # length
12 34 56 78 # value
-- python
ofp.oxm.bsn_lag_id(0x12345678)
-- c
obj = of_oxm_bsn_lag_id_new(OF_VERSION_1_3);
of_oxm_bsn_lag_id_value_set(obj, 0x12345678);
-- java
builder.setValue(LagId.of(0x12345678))