Re: [Ryu-devel] Using ryu.base.app_manager - Help

2014-10-31 Thread A G
I'll gather the PCAP and send it too you. Thanks! If the LLC library is correct, I think the LLC frame might not be following the standard, which is why the parsing and assertion may have failed.Or as you stated there might be a bug in the LLC parsing code. >When your application catches fatal ex

Re: [Ryu-devel] Using ryu.base.app_manager - Help

2014-10-26 Thread FUJITA Tomonori
On Thu, 23 Oct 2014 10:58:24 -0400 A G wrote: > Will using the ryu.base.app_manager."My App Name".reply_to_request(*req*, > *rep*) ensure that the application that I've written is still running? Not. Applications are connected with queue. So sending a request means just putting a request message

[Ryu-devel] Using ryu.base.app_manager - Help

2014-10-23 Thread A G
Will using the ryu.base.app_manager."My App Name".reply_to_request(*req*, *rep*) ensure that the application that I've written is still running? - If it does ensure that it is still running - Will it block the framework from responding to echo requests from a switch? - Can som