On Mon, May 07, 2012 at 07:18:34AM +0900, FUJITA Tomonori wrote: > > OFPActionHeader class should have 'serialize' method. > > Signed-off-by: FUJITA Tomonori <[email protected]>
This looks like it could have been an error introduced by me, sorry about that. Reviewed-by: Simon Horman <[email protected]> > --- > ryu/ofproto/ofproto_v1_0_parser.py | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/ryu/ofproto/ofproto_v1_0_parser.py > b/ryu/ofproto/ofproto_v1_0_parser.py > index 693d873..8ea3321 100644 > --- a/ryu/ofproto/ofproto_v1_0_parser.py > +++ b/ryu/ofproto/ofproto_v1_0_parser.py > @@ -120,7 +120,7 @@ class OFPActionHeader(object): > self.type = type_ > self.len = len_ > > - def serlize(self, buf, offset): > + def serialize(self, buf, offset): > msg_pack_into(ofproto_v1_0.OFP_ACTION_HEADER_PACK_STR, > buf, offset, self.type, self.len) > > -- > 1.7.4.4 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
