From 8d58bb62ab145b5cf7ed5c3b8be76d179837e8ec Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 23 Feb 2022 21:47:30 +0100 Subject: [PATCH] Work on I2P Interface --- RNS/Interfaces/I2PInterface.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RNS/Interfaces/I2PInterface.py b/RNS/Interfaces/I2PInterface.py index 6a8c533..5ac4ab1 100644 --- a/RNS/Interfaces/I2PInterface.py +++ b/RNS/Interfaces/I2PInterface.py @@ -510,6 +510,9 @@ class I2PInterface(Interface): for peer_addr in peers: interface_name = peer_addr peer_interface = I2PInterfacePeer(self, interface_name, peer_addr) + peer_interface.OUT = self.OUT + peer_interface.IN = self.IN + peer_interface.parent_interface = self RNS.Transport.interfaces.append(peer_interface) self.online = True