Remove "FIB Entries" from NDN host options
refs: #2912
Change-Id: I4474c7c0aad3b4c6066f096c78934f561a2bf070
diff --git a/ndn/ndn_host.py b/ndn/ndn_host.py
index 0bed247..15bf245 100644
--- a/ndn/ndn_host.py
+++ b/ndn/ndn_host.py
@@ -103,12 +103,11 @@
self.peerList = {}
- def config(self, fib=None, app=None, cache=None, **params):
+ def config(self, app=None, cache=None, **params):
r = Node.config(self, **params)
- self.setParam(r, 'app', fib=fib) # why is this not app=app, to be investigated
- self.setParam(r, 'fib', app=app) # and this fib=fib
+ self.setParam(r, 'app', app=app)
self.setParam(r, 'cache', cache=cache)
return r
@@ -138,12 +137,11 @@
self.peerList = {}
- def config(self, fib=None, app=None, cpu=None, cores=None, cache=None, **params):
+ def config(self, app=None, cpu=None, cores=None, cache=None, **params):
r = CPULimitedHost.config(self,cpu,cores, **params)
- self.setParam(r, 'app', fib=fib) #????? shoud it be app=app
- self.setParam(r, 'fib', app=app)
+ self.setParam(r, 'app', app=app)
self.setParam(r, 'cache', cache=cache)
return r