Re: [Ryu-devel] about some ofp_event

2017-03-16 Thread 个人邮箱
OK,I understand. Thanks for helping :-) Cheers! --- Yinbin > 在 2017年3月17日,09:06,Fujimoto Satoshi 写道: > > Hi > > As Yi said, Ryu dynamically generates event classes, including > EventOFPSwitchFeatures class. > You can see the detailed description in the Ryu documentation: > http:/

Re: [Ryu-devel] about some ofp_event

2017-03-16 Thread Fujimoto Satoshi
Hi As Yi said, Ryu dynamically generates event classes, including EventOFPSwitchFeatures class. You can see the detailed description in the Ryu documentation: http://ryu.readthedocs.io/en/latest/ryu_app_api.html#event-classes Thanks, Fujimoto On 2017年03月17日 08:58, Yi Tseng wrote: Hi Ryu ge

Re: [Ryu-devel] about some ofp_event

2017-03-16 Thread Yi Tseng
Hi Ryu generate events at runtime by using exists OpenFlow definition (ryu/ofproto/) The reason I think is they don't need to create new file when they add new OpenFlow definition. You can find here: https://github.com/osrg/ryu/blob/master/ryu/controller/ofp_event.py#L96 Yi 2017-03-16 7

[Ryu-devel] about some ofp_event

2017-03-16 Thread 个人邮箱
Greeting! It’s confused me that when I read the simple_switch_13.py in app, the file mentioned about off_event.EventOFPSwitchFeatures,but I don’t find the EventOFPSwitchFeatures class in ofp_event.py in controller.And I want to know how could simple_switch_13.py run without defining EventOFPSwi