diff --git a/README.md b/README.md index a8c79bb..736842d 100755 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Reticulum Network Stack β Reticulum is a cryptography-based networking stack for wide-area networks built on readily available hardware, and can operate even with very high latency and extremely low bandwidth. Reticulum allows you to build very wide-area networks with off-the-shelf tools, and offers end-to-end encryption, autoconfiguring cryptographically backed multi-hop transport, efficient addressing, unforgeable packet acknowledgements and more. -Reticulum is a complete networking stack, and does not use IP or higher layers, although it is easy to utilise IP (with TCP or UDP) as the underlying carrier for Reticulum. It is therefore trivial to tunnel Reticulum over the Internet or private IP networks. +Reticulum is a complete networking stack, and does not need IP or higher layers, although it is easy to use IP (with TCP or UDP) as the underlying carrier for Reticulum. It is therefore trivial to tunnel Reticulum over the Internet or private IP networks. Having no dependencies on traditional networking stacks free up overhead that has been utilised to implement a networking stack built directly on cryptographic principles, allowing resilience and stable functionality in open and trustless networks. diff --git a/RNS/vendor/__init__.py b/RNS/vendor/__init__.py index 344f9db..e3164b0 100755 --- a/RNS/vendor/__init__.py +++ b/RNS/vendor/__init__.py @@ -1,7 +1,5 @@ import os import glob -__version__ = "0.1.9" - modules = glob.glob(os.path.dirname(__file__)+"/*.py") __all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')] diff --git a/setup.py b/setup.py index 7a4be11..0c10f6f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setuptools.setup( entry_points= { 'console_scripts': [ 'rnsd=RNS.Utilities.rnsd:main', - 'rnsconfig=RNS.Utilities.rnsconfig:main', + 'rnstatus=RNS.Utilities.rnstatus:main', 'rnprobe=RNS.Utilities.rnprobe:main', 'rnpath=RNS.Utilities.rnpath:main',