Rich Lane | 2b202a5 | 2013-10-24 17:26:15 -0700 | [diff] [blame] | 1 | -- binary |
2 | 00 03 # class | ||||
3 | 02 # type/masked | ||||
4 | 04 # length | ||||
5 | 12 34 56 78 # value | ||||
6 | -- python | ||||
7 | ofp.oxm.bsn_lag_id(0x12345678) | ||||
8 | -- c | ||||
9 | obj = of_oxm_bsn_lag_id_new(OF_VERSION_1_3); | ||||
10 | of_oxm_bsn_lag_id_value_set(obj, 0x12345678); | ||||
11 | -- java | ||||
Rich Lane | 376cafe | 2013-10-27 21:49:14 -0700 | [diff] [blame] | 12 | builder.setValue(LagId.of(0x12345678)) |