summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-07-16 10:20:16 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-07-17 06:25:27 +0900
commitfc05f44eaf9580c90a1df94990d2c4b6e3822dad (patch)
treef242c628c1fdb23b5d067f4b38f741dbd36d1d1b
parentbff41cb9521dedb0450c2a53d83cc316837a5414 (diff)
of1.2: add OFPSF_REPLY_MORE constant
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/ofproto/ofproto_v1_2.py3
1 files changed, 3 insertions, 0 deletions
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