blob: d385d841727fb47d54451f9a70d54131622160db [file] [log] [blame]
Sovietaced3d42dbe2014-01-23 15:55:48 -08001-- binary
204 04 # version, type
300 18 # length
412 34 56 78 # xid
500 5c 16 c7 # experimenter
600 00 00 3b # subtype
700 00 00 01 # num_aux
800 00 00 00 # status
9-- python
10ofp.message.bsn_set_aux_cxns_reply(
11 xid=0x12345678, num_aux=1, status=0)
12-- java
13builder.setXid(0x12345678)
14 .setNumAux(1)
15 .setStatus(0)
16-- c
17obj = of_bsn_set_aux_cxns_reply_new(OF_VERSION_1_3);
18of_bsn_set_aux_cxns_reply_xid_set(obj, 0x12345678);
19of_bsn_set_aux_cxns_reply_num_aux_set(obj, 1);
20of_bsn_set_aux_cxns_reply_status_set(obj, 0);