mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-05 17:46:29 +02:00
Ensure sender node is not the receiver on wired communications
This commit is contained in:
parent
a597b6b91e
commit
7ff1a129db
1 changed files with 3 additions and 0 deletions
|
@ -331,6 +331,9 @@ class Simulator:
|
|||
if interface not in self.nodes[dst]["interfaces"]:
|
||||
self.log("Cannot create communication from node "+str(src)+ " to "+str(dst)+", interface "+interface+" not available on node "+str(dst))
|
||||
exit(1)
|
||||
elif src==dst:
|
||||
self.log("Cannot create communication from node "+str(src)+ " to "+str(dst)+" on interface "+interface+", receiver node cannot be the sender")
|
||||
exit(1)
|
||||
self.log("Send "+str(datasize)+" bytes to n"+str(dst)+" on "+interface,node=nsrc)
|
||||
if not self.nodes[dst]["turned_on"] and receiver_required:
|
||||
return(False)
|
||||
|
|
Loading…
Add table
Reference in a new issue