diff options
-rw-r--r-- | ryu/ofproto/ofproto_v1_5_parser.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ryu/ofproto/ofproto_v1_5_parser.py b/ryu/ofproto/ofproto_v1_5_parser.py index a36297e2..24672ffb 100644 --- a/ryu/ofproto/ofproto_v1_5_parser.py +++ b/ryu/ofproto/ofproto_v1_5_parser.py @@ -3223,11 +3223,11 @@ class OFPMeterDescStats(StringifyMixin): (meter_config.length, meter_config.flags, meter_config.meter_id) = struct.unpack_from( - ofproto.OFP_METER_CONFIG_PACK_STR, buf, offset) - offset += ofproto.OFP_METER_CONFIG_SIZE + ofproto.OFP_METER_DESC_PACK_STR, buf, offset) + offset += ofproto.OFP_METER_DESC_SIZE meter_config.bands = [] - length = ofproto.OFP_METER_CONFIG_SIZE + length = ofproto.OFP_METER_DESC_SIZE while length < meter_config.length: band = OFPMeterBandHeader.parser(buf, offset) meter_config.bands.append(band) |