initial work towards trying to model loss between wlan nodes using tc filters

This commit is contained in:
Blake Harnden 2020-04-23 13:57:07 -07:00
parent b5f4571618
commit 1fc5c92039
4 changed files with 123 additions and 38 deletions

View file

@ -1493,6 +1493,11 @@ class Session:
# initialize distributed tunnels
self.distributed.start()
# initialize wlan loss
for node in self.nodes.values():
if isinstance(node, WlanNode):
node.initialize_loss()
# instantiate will be invoked again upon emane configure
if self.emane.startup() == self.emane.NOT_READY:
return []