updates to Pipefile.lock and for nodes to add server to constructor

This commit is contained in:
bharnden 2019-10-05 11:16:57 -07:00
parent 931ee65235
commit 95296988c5
6 changed files with 310 additions and 153 deletions

View file

@ -117,8 +117,10 @@ class CoreNs3Net(CoreNetworkBase):
# icon used
type = "wlan"
def __init__(self, session, _id=None, name=None, start=True, policy=None):
CoreNetworkBase.__init__(self, session, _id, name)
def __init__(
self, session, _id=None, name=None, start=True, server=None, policy=None
):
CoreNetworkBase.__init__(self, session, _id, name, start, server)
self.tapbridge = ns.tap_bridge.TapBridgeHelper()
self._ns3devs = {}
self._tapdevs = {}