From c5bc92e4eab81514f26473716c96eac39fe0305e Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 3 Apr 2025 17:38:00 +0200 Subject: [PATCH] Added loader for BackboneInterface --- RNS/Reticulum.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/RNS/Reticulum.py b/RNS/Reticulum.py index 9ac1e94..c118493 100755 --- a/RNS/Reticulum.py +++ b/RNS/Reticulum.py @@ -663,6 +663,10 @@ class Reticulum: interface = AutoInterface.AutoInterface(RNS.Transport, interface_config) interface_post_init(interface) + if c["type"] == "BackboneInterface": + interface = BackboneInterface.BackboneInterface(RNS.Transport, interface_config) + interface_post_init(interface) + if c["type"] == "UDPInterface": interface = UDPInterface.UDPInterface(RNS.Transport, interface_config) interface_post_init(interface)