Hi,

On Thu, 17 Oct 2013 14:33:04 +0100
Adam Humphreys <adam.humphr...@asidua.com> wrote:

> I have been trying to send a Flow Mod Message to the Openflow stack which 
> sets a masked IP address. However, on the OF side no mask is present in the 
> received message. How do I go about correctly setting the mask for this field?

I would recommend the simpler way to build OFPMatch instance:

match = dp.ofproto_parser.OFPMatch(eth_type=0x800,
                                   ipv4_src=('10.1.1.0',
                                             '255.255.255.0'))

------------------------------------------------------------------------------
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
Ryu-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to