Rich Lane | c9fc57d | 2013-05-16 16:39:12 -0700 | [diff] [blame] | 1 | -- binary |
2 | 04 06 # version, type | ||||
3 | 00 20 # length | ||||
4 | 12 34 56 78 # xid | ||||
5 | fe dc ba 98 76 54 32 10 # datapath_id | ||||
6 | 00 00 00 40 # n_buffers | ||||
7 | c8 # n_tables | ||||
8 | 05 # auxiliary_id | ||||
9 | 00 00 # pad | ||||
10 | 00 00 01 01 # capabilities | ||||
11 | 00 00 00 00 # reserved | ||||
12 | -- python | ||||
13 | ofp.message.features_reply( | ||||
14 | xid=0x12345678, | ||||
15 | datapath_id=0xFEDCBA9876543210, | ||||
16 | n_buffers=64, | ||||
17 | n_tables=200, | ||||
18 | auxiliary_id=5, | ||||
19 | capabilities=ofp.OFPC_FLOW_STATS|ofp.OFPC_PORT_BLOCKED, | ||||
20 | reserved=0) |