Link proof debug
This commit is contained in:
parent
20dfbcf0cc
commit
0273328b23
|
@ -215,6 +215,13 @@ class Link:
|
||||||
proof.send()
|
proof.send()
|
||||||
self.had_outbound()
|
self.had_outbound()
|
||||||
|
|
||||||
|
# TODO: Remove debug
|
||||||
|
if packet.sent:
|
||||||
|
RNS.log("The LR proof was sent")
|
||||||
|
else:
|
||||||
|
RNS.log("The LR proof was not sent")
|
||||||
|
|
||||||
|
|
||||||
def prove_packet(self, packet):
|
def prove_packet(self, packet):
|
||||||
signature = self.sign(packet.packet_hash)
|
signature = self.sign(packet.packet_hash)
|
||||||
# TODO: Hardcoded as explicit proof for now
|
# TODO: Hardcoded as explicit proof for now
|
||||||
|
|
|
@ -455,6 +455,16 @@ class Transport:
|
||||||
packet.update_hash()
|
packet.update_hash()
|
||||||
sent = False
|
sent = False
|
||||||
|
|
||||||
|
# TODO: Remove debug
|
||||||
|
if packet.context == RNS.Packet.LRPROOF:
|
||||||
|
RNS.log("Outbound LR proof")
|
||||||
|
RNS.log("Dest: "+RNS.prettyhexrep(packet.destination_hash))
|
||||||
|
if packet.destination_hash in Transport.destination_table:
|
||||||
|
RNS.log("Exists in path table")
|
||||||
|
else:
|
||||||
|
RNS.log("Not in path table")
|
||||||
|
|
||||||
|
|
||||||
# Check if we have a known path for the destination in the path table
|
# Check if we have a known path for the destination in the path table
|
||||||
if packet.packet_type != RNS.Packet.ANNOUNCE and packet.destination_hash in Transport.destination_table:
|
if packet.packet_type != RNS.Packet.ANNOUNCE and packet.destination_hash in Transport.destination_table:
|
||||||
outbound_interface = Transport.destination_table[packet.destination_hash][5]
|
outbound_interface = Transport.destination_table[packet.destination_hash][5]
|
||||||
|
|
Loading…
Reference in New Issue