Sovietaced | 3d42dbe | 2014-01-23 15:55:48 -0800 | [diff] [blame] | 1 | -- binary |
| 2 | 04 04 # version, type |
| 3 | 00 18 # length |
| 4 | 12 34 56 78 # xid |
| 5 | 00 5c 16 c7 # experimenter |
| 6 | 00 00 00 3b # subtype |
| 7 | 00 00 00 01 # num_aux |
| 8 | 00 00 00 00 # status |
| 9 | -- python |
| 10 | ofp.message.bsn_set_aux_cxns_reply( |
| 11 | xid=0x12345678, num_aux=1, status=0) |
| 12 | -- java |
| 13 | builder.setXid(0x12345678) |
| 14 | .setNumAux(1) |
| 15 | .setStatus(0) |
| 16 | -- c |
| 17 | obj = of_bsn_set_aux_cxns_reply_new(OF_VERSION_1_3); |
| 18 | of_bsn_set_aux_cxns_reply_xid_set(obj, 0x12345678); |
| 19 | of_bsn_set_aux_cxns_reply_num_aux_set(obj, 1); |
| 20 | of_bsn_set_aux_cxns_reply_status_set(obj, 0); |