From d4fabc04644fc517b99333f94a8d86425d3a8d3f Mon Sep 17 00:00:00 2001 From: Rich Lane Date: Mon, 16 Sep 2013 13:32:19 -0700 Subject: [PATCH] IVSSwitch: support opts constructor parameter This parameter is already supported by the other switch classes. --- mininet/node.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mininet/node.py b/mininet/node.py index 3185746..6c60ea1 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1087,6 +1087,7 @@ class IVSSwitch(Switch): args.extend( ['-c', '%s:%d' % (c.IP(), c.port)] ) if self.listenPort: args.extend( ['--listen', '127.0.0.1:%i' % self.listenPort] ) + args.append( self.opts ) logfile = '/tmp/ivs.%s.log' % self.name