This commit is contained in:
Mark Qvist 2018-04-08 13:41:03 +02:00
parent 07814919f2
commit 5f7694afdd
3 changed files with 5 additions and 5 deletions

View file

@ -94,7 +94,7 @@ class Packet:
def send(self):
if not self.sent:
self.pack()
RNS.log("Size: "+str(len(self.raw))+" header is "+str(len(self.header))+" payload is "+str(len(self.ciphertext)), RNS.LOG_DEBUG)
#RNS.log("Size: "+str(len(self.raw))+" header is "+str(len(self.header))+" payload is "+str(len(self.ciphertext)), RNS.LOG_DEBUG)
RNS.Transport.outbound(self.raw)
self.packet_hash = RNS.Identity.fullHash(self.raw)
self.sent_at = time.time()