Rich Lane | 46cbb63 | 2013-11-15 15:18:32 -0800 | [diff] [blame] | 1 | -- binary |
2 | 04 12 # version, type | ||||
3 | 00 18 # length | ||||
4 | 12 34 56 78 # xid | ||||
5 | ff ff # stats_type | ||||
6 | 00 00 # flags | ||||
7 | 00 00 00 00 # pad | ||||
8 | 00 5c 16 c7 # experimenter | ||||
9 | 00 00 00 1 # subtype | ||||
10 | -- python | ||||
11 | ofp.message.bsn_lacp_stats_request( | ||||
12 | xid=0x12345678, | ||||
13 | flags=0) | ||||
14 | -- java | ||||
15 | builder.setXid(0x12345678) | ||||
16 | -- c | ||||
17 | obj = of_bsn_lacp_stats_request_new(OF_VERSION_1_3); | ||||
18 | of_bsn_lacp_stats_request_xid_set(obj, 0x12345678); |