Ensure sender node is not the receiver on wired communications

This commit is contained in:
Loic Guegan 2023-07-03 11:30:11 +02:00
parent a597b6b91e
commit 7ff1a129db

View file

@ -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)