mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
Enable nodes to have multiple interfaces
This commit is contained in:
parent
7540e8290d
commit
3fef2bbf4b
1 changed files with 6 additions and 3 deletions
9
esds.py
9
esds.py
|
@ -5,7 +5,7 @@ import threading,importlib,queue,sys,time
|
|||
|
||||
class Node:
|
||||
available_node_id=0
|
||||
def __init__(self,src):
|
||||
def __init__(self,src,interfaces):
|
||||
"""
|
||||
|
||||
"""
|
||||
|
@ -16,7 +16,10 @@ class Node:
|
|||
self.rargs=None # Store the requests arguments
|
||||
self.plugins=list() # Contains all registered node plugins
|
||||
self.rqueue=queue.Queue() # Receive simulator acknowledgments
|
||||
self.chest={"state":"running", "turned_on":True, "request": None, "interfaces":{"wlan0":queue.Queue(), "eth0":queue.Queue()}, "interfaces_queue_size":{"wlan0":0,"eth0":0}}
|
||||
self.chest={"state":"running", "turned_on":True, "request": None, "interfaces":dict(), "interfaces_queue_size":dict()}
|
||||
for interface in interfaces:
|
||||
self.chest["interfaces"][interface]=queue.Queue()
|
||||
self.chest["interfaces_queue_size"][interface]=0
|
||||
self.chest_lock=threading.Lock() # To access/modify self.chest
|
||||
|
||||
def plugin_register(self,plugin):
|
||||
|
@ -266,7 +269,7 @@ class Simulator:
|
|||
"""
|
||||
Create a node thread and run it
|
||||
"""
|
||||
node=Node(src)
|
||||
node=Node(src, self.netmat.keys())
|
||||
self.nodes.append(node)
|
||||
thread=threading.Thread(target=node.run, daemon=False,args=[args])
|
||||
thread.start()
|
||||
|
|
Loading…
Add table
Reference in a new issue