of13: add missing UINTxx_MAX

Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
YAMAMOTO Takashi 2013-05-14 17:11:39 +09:00 committed by FUJITA Tomonori
parent 4006436f9a
commit 9d06333da0

View File

@ -266,6 +266,11 @@ class OFPSetConfig(MsgBase):
self.flags, self.miss_send_len)
UINT64_MAX = (1 << 64) - 1
UINT32_MAX = (1 << 32) - 1
UINT16_MAX = (1 << 16) - 1
class Flow(object):
def __init__(self):
self.in_port = 0