blob: 4a1b9bf47603a53dc9f72d74fd14dbb7be7ecf13 [file] [log] [blame]
Rich Lanec9fc57d2013-05-16 16:39:12 -07001-- binary
204 13 # version, type
300 20 # length
412 34 56 78 # xid
500 0b # stats_type
600 00 # flags
700 00 00 00 # pad
800 00 00 05 # max_meter
900 00 00 03 # band_types
1000 00 00 09 # capabilities
110a # max_bands
1207 # max_color
1300 00 # pad
14-- python
15ofp.message.meter_features_stats_reply(
16 xid=0x12345678,
17 flags=0,
18 features=ofp.meter_features(
19 max_meter=5,
20 band_types=ofp.OFPMBT_DROP|ofp.OFPMBT_DSCP_REMARK,
21 capabilities=ofp.OFPMF_KBPS|ofp.OFPMF_STATS,
22 max_bands=10,
23 max_color=7))