您的位置:首页 > 其它

POX学习笔记之事件与对应模块总结

2013-12-27 15:39 246 查看
一、各模块能触发的事件

discovery.py: LinkEvent
flow_table.py: FlowTableModification
__init__.py: ConnectionIn
nicira.py:PacketIn
of_01.py: FlowRemoved,FeaturesReceived,ConnectionUp,RawStatsReply,PortStatus,PacketIn,ErrorIn,BarrierIn,SwitchDescReceived,FlowStatsReceived,AggregateFlowStatsReceived,TableStatsReceived,PortStatsReceived,QueueStatsReceived,ConnectionDown
以下两个待定:
def raiseEventNoErrors (self, event, *args, **kw):
def raiseEvent (self, event, *args, **kw):
topology.py: SwitchJoin,SwitchConnectionUp,SwitchConnectionDown,SwitchLeave,PortStatus,PacketIn,BarrierIn,FlowRemoved,FlowTableModification

二、各模块能处理的事件

discovery.py:PortStatus,ConnectionUp,ConnectionDown,PacketIn
__init__.py: DownEvent
of_01.py:GoingDownEvent,DownEvent,GoingUpEvent,BarrierIn,ErrorIn
of_service.py: ConnectionUp,ConnectionDown,BarrierIn,ErrorIn,SwitchDescReceived,FlowStatsReceived,PacketIn
spanning_tree.py:ConnectionUp,LinkEvent
topology.py:LinkEvent,ConnectionUp,ConnectionDown,PortStatus,PacketIn,BarrierIn,FlowRemoved,SwitchConnectionUp,SwitchConnectionDown
util.py:onnectionUp,ConnectionDown,FeaturesReceived,PortStatus,FlowRemoved,PacketIn,BarrierIn,ErrorIn,
RawStatsReply,SwitchDescReceived,FlowStatsReceived,AggregateFlowStatsReceived,TableStatsReceived,
PortStatsReceived,QueueStatsReceived,FlowRemoved
webservice.py: SwitchDescReceived,ErrorIn,FlowStatsReceived,BarrierIn

三、事件与对应模块表

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  POX 事件 模块 对应