X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=blobdiff_plain;f=emuvim%2Fdcemulator%2Fnet.py;h=586b1e8421f5f269b54925297107a890d20d8d7b;hp=8ea41a7169e9fb606e2f06ec983a95de7885f126;hb=9c252b6c886bc254872fd1dfe3c19fab6fe15570;hpb=db05bfd96fc98ec1e688521ced5f84b2c569f06d 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 @@ class DCNetwork(object): # 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")