added basic API registration and connection mechanism
diff --git a/emuvim/dcemulator/net.py b/emuvim/dcemulator/net.py
index 8ea41a7..586b1e8 100644
--- a/emuvim/dcemulator/net.py
+++ b/emuvim/dcemulator/net.py
@@ -69,7 +69,7 @@
# create link if everything is correct
if (node1 is not None and isinstance(node1, OVSKernelSwitch)
and node2 is not None and isinstance(node2, OVSKernelSwitch)):
- self.mnet.addLink(node1, node2) # TODO we need TCLinks with user defined performance her
+ self.mnet.addLink(node1, node2) # TODO we need TCLinks with user defined performance here
else:
raise Exception(
"one of the given nodes is not a Mininet switch or None")