blob: 5da07e337fc7eb102f3b3b2ad1e15516995d9a64 [file] [log] [blame]
Rich Laneeb21c4f2013-10-28 17:34:41 -07001-- binary
200 03 # class
30a # type/masked
404 # length
512 34 56 78 # value
6-- python
7ofp.oxm.bsn_l3_src_class_id(0x12345678)
8-- c
9obj = of_oxm_bsn_l3_src_class_id_new(OF_VERSION_1_3);
10of_oxm_bsn_l3_src_class_id_value_set(obj, 0x12345678);
11-- java
12builder.setValue(ClassId.of(0x12345678))