This patch solves the following bugs:
* For the EAPOL trap flow, ONOS sends flow-mod including the meter id before the related meter-mod. Because of this, Voltha sends wrong flow count for the meter stats reply
* Getting the tech profile id & inner vlan id from the write metadata instruction
* ofp_flow_removed implementation is added
Change-Id: Ib74c7b80db85506f675c2d7ff25bf644c64e5398
diff --git a/ofagent/of_protocol_handler.py b/ofagent/of_protocol_handler.py
index 813c8a8..7deee6d 100644
--- a/ofagent/of_protocol_handler.py
+++ b/ofagent/of_protocol_handler.py
@@ -347,3 +347,6 @@
def forward_port_status(self, ofp_port_status):
self.cxn.send(to_loxi(ofp_port_status))
+
+ def forward_flow_removed(self, ofp_flow_removed):
+ self.cxn.send(to_loxi(ofp_flow_removed))