Differentiate exception between link establishment callback, and internal RTT packet handling

pull/252/head
Mark Qvist 2023-03-04 18:32:36 +01:00
rodzic bbfdd37935
commit 777fea9cea
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -379,8 +379,11 @@ class Link:
if self.rtt != None and self.establishment_cost != None and self.rtt > 0 and self.establishment_cost > 0:
self.establishment_rate = self.establishment_cost/self.rtt
if self.owner.callbacks.link_established != None:
self.owner.callbacks.link_established(self)
try:
if self.owner.callbacks.link_established != None:
self.owner.callbacks.link_established(self)
except Exception as e:
RNS.log("Error occurred in external link establishment callback. The contained exception was: "+str(e), RNS.LOG_ERROR)
except Exception as e:
RNS.log("Error occurred while processing RTT packet, tearing down link. The contained exception was: "+str(e), RNS.LOG_ERROR)