From 27999d960e8849ef3d689e405a5aa5cb7fe7f6b6 Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Sat, 26 Jun 2021 18:42:33 +0530 Subject: BUGFIXES: From Kali pre-release testing. Multiple bug-fixes from thorough testing. More fixes added. Fix for Non-BLocking Signed-off-by: Sridhar K. N. Rao Change-Id: Idd2fb214ab6dc4eba8a834ab13ecaa29ff09445e --- core/component_factory.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/component_factory.py') diff --git a/core/component_factory.py b/core/component_factory.py index f13bfb5b..618c7f5a 100644 --- a/core/component_factory.py +++ b/core/component_factory.py @@ -81,6 +81,8 @@ def create_vswitch(deployment_scenario, vswitch_class, traffic, return VswitchControllerPtunP(deployment, vswitch_class, traffic) elif deployment.startswith("clean"): return VswitchControllerClean(deployment, vswitch_class, traffic) + elif deployment.startswith("pc"): + return VswitchControllerP2P(deployment, vswitch_class, traffic) else: raise RuntimeError("Unknown deployment scenario '{}'.".format(deployment)) -- cgit 1.2.3-korg