Re: [nox-dev] Flow removed callback function input parameters.

2010-11-27 Thread K Singh
Thanks Murphy, I was able to get all the required information from .flow parameter mentioned by you. I am trying to accomplish below mentioned statement, would like your or other developers inputs on the approach chosen. I am prioritizing the flows between end hosts on the basis of port numbers.

Re: [nox-dev] Flow removed callback function input parameters.

2010-11-26 Thread Murphy McCauley
Responses inline. On Nov 25, 2010, at 9:29 PM, K Singh wrote: > I was adding flow removed event in the pyswitch.py file. > >def install(self): > inst.register_for_packet_in(packet_in_callback) > inst.register_for_datapath_leave(datapath_leave_callback) > inst.register

[nox-dev] Flow removed callback function input parameters.

2010-11-25 Thread K Singh
I was adding flow removed event in the pyswitch.py file. def install(self): inst.register_for_packet_in(packet_in_callback) inst.register_for_datapath_leave(datapath_leave_callback) inst.register_for_datapath_join(datapath_join_callback) inst.post_callback(1, tim