diff --git a/ryu/ofproto/ofproto_v1_2.py b/ryu/ofproto/ofproto_v1_2.py index 559f50cc..9c9c4f95 100644 --- a/ryu/ofproto/ofproto_v1_2.py +++ b/ryu/ofproto/ofproto_v1_2.py @@ -421,6 +421,9 @@ OFP_STATS_REQUEST_SIZE = 16 assert (calcsize(OFP_STATS_REQUEST_PACK_STR) + OFP_HEADER_SIZE == OFP_STATS_REQUEST_SIZE) +# enum ofp_stats_reply_flags +OFPSF_REPLY_MORE = 1 << 0 # More replies to follow. + # struct ofp_stats_reply OFP_STATS_REPLY_PACK_STR = '!HH4x' OFP_STATS_REPLY_SIZE = 16