Re: [Ryu-devel] [openflow-discuss] Custom Packet creation in Ryu controller

2015-03-19 Thread Ruchika Luthra
Thank you for replying. I am able to create a custom packet using Scapy. but as per my knowledge, packet_out event is used when we want to send the custom packet out of any port of the switch. But I want to retain that packet at the switch. Is there any way possible for that? On Wed, Mar 18, 2015

Re: [Ryu-devel] Dynamic Load App

2015-03-19 Thread Yi Tseng
Hi, I think you can use CONTEXT to start other app and get their instance class App1(app_manager.RyuApp): _CONTEXTS = { 'app2': App2, 'app3': App3, } and you can use "uninstantiate" method in the AppManager to stop the app. 2015-03-19 14:02 GMT