Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-21 Thread FUJITA Tomonori
On Wed, 19 Feb 2014 21:10:57 +0900 (JST) FUJITA Tomonori wrote: > On Tue, 18 Feb 2014 22:52:38 +0900 (JST) > [email protected] (YAMAMOTO Takashi) wrote: > >>> On Mon, 17 Feb 2014 02:25:55 -0500 >>> Rob Udechukwu wrote: >>> Sorry for the delay. Thanks for the help, the only modificati

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-19 Thread FUJITA Tomonori
On Tue, 18 Feb 2014 22:52:38 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: >> On Mon, 17 Feb 2014 02:25:55 -0500 >> Rob Udechukwu wrote: >> >>> Sorry for the delay. Thanks for the help, the only modifications I had to >>> make to the code was within the init() and the serialize()

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-18 Thread Simon Horman
On Tue, Feb 18, 2014 at 11:03:45PM +0900, YAMAMOTO Takashi wrote: > > On Tue, 18 Feb 2014 22:52:38 +0900 (JST) > > [email protected] (YAMAMOTO Takashi) wrote: > > > >>> On Mon, 17 Feb 2014 02:25:55 -0500 > >>> Rob Udechukwu wrote: > >>> > Sorry for the delay. Thanks for the help, the o

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-18 Thread FUJITA Tomonori
On Tue, 18 Feb 2014 23:03:45 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: >> On Tue, 18 Feb 2014 22:52:38 +0900 (JST) >> [email protected] (YAMAMOTO Takashi) wrote: >> On Mon, 17 Feb 2014 02:25:55 -0500 Rob Udechukwu wrote: > Sorry for the delay. Thanks f

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-18 Thread YAMAMOTO Takashi
> On Tue, 18 Feb 2014 22:52:38 +0900 (JST) > [email protected] (YAMAMOTO Takashi) wrote: > >>> On Mon, 17 Feb 2014 02:25:55 -0500 >>> Rob Udechukwu wrote: >>> Sorry for the delay. Thanks for the help, the only modifications I had to make to the code was within the init() and the

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-18 Thread FUJITA Tomonori
On Tue, 18 Feb 2014 22:52:38 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: >> On Mon, 17 Feb 2014 02:25:55 -0500 >> Rob Udechukwu wrote: >> >>> Sorry for the delay. Thanks for the help, the only modifications I had to >>> make to the code was within the init() and the serialize()

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-18 Thread YAMAMOTO Takashi
> On Mon, 17 Feb 2014 02:25:55 -0500 > Rob Udechukwu wrote: > >> Sorry for the delay. Thanks for the help, the only modifications I had to >> make to the code was within the init() and the serialize() function. >> - init() - I am ensuring data"s length is a multiple of 8 as specified in 1.3 >>

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-18 Thread FUJITA Tomonori
On Mon, 17 Feb 2014 02:25:55 -0500 Rob Udechukwu wrote: > Sorry for the delay. Thanks for the help, the only modifications I had to > make to the code was within the init() and the serialize() function. > - init() - I am ensuring data’s length is a multiple of 8 as specified in 1.3 > - serializ

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-02-16 Thread Rob Udechukwu
Sorry for the delay. Thanks for the help, the only modifications I had to make to the code was within the init() and the serialize() function. - init() - I am ensuring data’s length is a multiple of 8 as specified in 1.3 - serialize() - Removed the self.buf for just but Code listed below. @OFPA

Re: [Ryu-devel] Send OFPActionExperimenter with data

2014-01-27 Thread FUJITA Tomonori
On Sun, 26 Jan 2014 02:22:54 -0500 Rob Udechukwu wrote: > I have a question on whether there is a way to send data along with > the experimenter ID within Ryu's OFPActionExperimenter() > message. LINC's OpenFlow protocol hints at data > (https://github.com/FlowForwarding/of_protocol/blob/master/i

[Ryu-devel] Send OFPActionExperimenter with data

2014-01-25 Thread Rob Udechukwu
I have a question on whether there is a way to send data along with the experimenter ID within Ryu's OFPActionExperimenter() message. LINC's OpenFlow protocol hints at data (https://github.com/FlowForwarding/of_protocol/blob/master/include/ofp_v4.hrl#L492), which is why I asking.