From be821b6927269c4d0f28e1b09143db3d16995f26 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 6 May 2025 19:09:20 +0200 Subject: [PATCH] Added instance_name option and description to default config file --- RNS/Reticulum.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/RNS/Reticulum.py b/RNS/Reticulum.py index cc3c9bac..c112a7f3 100755 --- a/RNS/Reticulum.py +++ b/RNS/Reticulum.py @@ -1370,14 +1370,18 @@ share_instance = Yes # If you want to run multiple *different* shared instances # on the same system, you will need to specify different -# shared instance ports for each. The defaults are given -# below, and again, these options can be left out if you -# don't need them. +# instance names for each. On platforms supporting domain +# sockets, this can be done with the instance_name option: + +instance_name = default + +# Some platforms don't support domain sockets, and if that +# is the case, you can isolate different instances by +# specifying a unique set of ports for each: shared_instance_port = 37428 instance_control_port = 37429 - # You can configure Reticulum to panic and forcibly close # if an unrecoverable interface error occurs, such as the # hardware device for an interface disappearing. This is