On Tue, 14 May 2013 17:11:39 +0900 YAMAMOTO Takashi <[email protected]> wrote:
> > Signed-off-by: YAMAMOTO Takashi <[email protected]> > --- > ryu/ofproto/ofproto_v1_3_parser.py | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/ryu/ofproto/ofproto_v1_3_parser.py > b/ryu/ofproto/ofproto_v1_3_parser.py > index 3f2d020..2f36859 100644 > --- a/ryu/ofproto/ofproto_v1_3_parser.py > +++ b/ryu/ofproto/ofproto_v1_3_parser.py > @@ -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 Applied. I think that we could move the above ofproto_common.py but let's leave them alone. ------------------------------------------------------------------------------ AlienVault Unified Security Management (USM) platform delivers complete security visibility with the essential security capabilities. Easily and efficiently configure, manage, and operate all of your security controls from a single console and one unified framework. Download a free trial. http://p.sf.net/sfu/alienvault_d2d _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
