mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-16 19:00:14 +00:00
Catch error when undefined next-hop path data is returned
This commit is contained in:
parent
d15d04eae5
commit
8803dd5b65
@ -187,15 +187,20 @@ def program_setup(configdir, table, rates, drop, destination_hexhash, verbosity,
|
|||||||
|
|
||||||
if RNS.Transport.has_path(destination_hash):
|
if RNS.Transport.has_path(destination_hash):
|
||||||
hops = RNS.Transport.hops_to(destination_hash)
|
hops = RNS.Transport.hops_to(destination_hash)
|
||||||
next_hop = RNS.prettyhexrep(reticulum.get_next_hop(destination_hash))
|
next_hop_bytes = reticulum.get_next_hop(destination_hash)
|
||||||
next_hop_interface = reticulum.get_next_hop_if_name(destination_hash)
|
if next_hop_bytes == None:
|
||||||
|
print("\r \rError: Invalid path data returned")
|
||||||
if hops != 1:
|
sys.exit(1)
|
||||||
ms = "s"
|
|
||||||
else:
|
else:
|
||||||
ms = ""
|
next_hop = RNS.prettyhexrep(next_hop_bytes)
|
||||||
|
next_hop_interface = reticulum.get_next_hop_if_name(destination_hash)
|
||||||
|
|
||||||
print("\rPath found, destination "+RNS.prettyhexrep(destination_hash)+" is "+str(hops)+" hop"+ms+" away via "+next_hop+" on "+next_hop_interface)
|
if hops != 1:
|
||||||
|
ms = "s"
|
||||||
|
else:
|
||||||
|
ms = ""
|
||||||
|
|
||||||
|
print("\rPath found, destination "+RNS.prettyhexrep(destination_hash)+" is "+str(hops)+" hop"+ms+" away via "+next_hop+" on "+next_hop_interface)
|
||||||
else:
|
else:
|
||||||
print("\r \rPath not found")
|
print("\r \rPath not found")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user