From 987ff0658b7dc6243d28c581a222df4482aa82a4 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 23 Feb 2022 22:53:16 +0100 Subject: [PATCH] Version bump --- RNS/Interfaces/I2PInterface.py | 9 +++++++++ RNS/_version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/RNS/Interfaces/I2PInterface.py b/RNS/Interfaces/I2PInterface.py index 033b91b..290f8bb 100644 --- a/RNS/Interfaces/I2PInterface.py +++ b/RNS/Interfaces/I2PInterface.py @@ -34,6 +34,15 @@ class KISS(): data = data.replace(bytes([0xc0]), bytes([0xdb, 0xdc])) return data +# TODO: Neater shutdown of the event loop and +# better error handling is needed. Sometimes +# errors occur in I2P that leave tunnel setup +# hanging indefinitely, and right now we have +# no way of catching it. Sometimes the server +# and client tasks are also not cancelled on +# shutdown, which leads to errors dumped to +# the console. This should also be remedied. + class I2PController: def __init__(self, rns_storagepath): import RNS.vendor.i2plib as i2plib diff --git a/RNS/_version.py b/RNS/_version.py index 5ebd7d1..26eaa49 100644 --- a/RNS/_version.py +++ b/RNS/_version.py @@ -1 +1 @@ -__version__ = "0.3.2" \ No newline at end of file +__version__ = "0.3.3" \ No newline at end of file