aboutsummaryrefslogtreecommitdiffstats
path: root/core/vswitch_controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/vswitch_controller.py')
-rw-r--r--core/vswitch_controller.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/core/vswitch_controller.py b/core/vswitch_controller.py
index 619e1d8b..855de8b2 100644
--- a/core/vswitch_controller.py
+++ b/core/vswitch_controller.py
@@ -49,3 +49,10 @@ class IVswitchController(object):
raise NotImplementedError(
"The VswitchController does not implement the \"get_ports_info\" "
"function.")
+
+ def dump_vswitch_flows(self):
+ """ Dumps flows from vswitch
+ """
+ raise NotImplementedError(
+ "The VswitchController does not implement the "
+ "\"dump_vswitch_flows\" function.")