On Tue, 15 Oct 2013 05:54:01 +0900 FUJITA Tomonori <[email protected]> wrote:
> On Tue, 8 Oct 2013 21:54:25 +0800 > Can Zhang <[email protected]> wrote: > > > Signed-off-by: Can Zhang <[email protected]> > > --- > > ryu/ofproto/nx_match.py | 10 ++++++++++ > > 1 file changed, 10 insertions(+) > > Applied, thanks. Duh, I applied the following pep8 warning fix for this patch: diff --git a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py index b575d9a..13296cb 100644 --- a/ryu/ofproto/nx_match.py +++ b/ryu/ofproto/nx_match.py @@ -694,6 +694,7 @@ class MFTPSRC(MFField): def put(self, buf, offset, rule): return self.putm(buf, offset, rule.flow.tp_src, rule.wc.tp_src_mask) + @_register_make @_set_nxm_headers([ofproto_v1_0.NXM_OF_TCP_DST, ofproto_v1_0.NXM_OF_TCP_DST_W, ofproto_v1_0.NXM_OF_UDP_DST, ofproto_v1_0.NXM_OF_UDP_DST_W]) @@ -705,6 +706,7 @@ class MFTPDST(MFField): def put(self, buf, offset, rule): return self.putm(buf, offset, rule.flow.tp_dst, rule.wc.tp_dst_mask) + @_register_make @_set_nxm_headers([ofproto_v1_0.NXM_OF_ARP_SPA, ofproto_v1_0.NXM_OF_ARP_SPA_W]) class MFArpSpa(MFField): ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
