diff --git a/OPERATING b/OPERATING index 35407f4..f63558c 100644 --- a/OPERATING +++ b/OPERATING @@ -78,6 +78,21 @@ YRCALL=XRFNNNML Where XRFNNN is a friendly reflector, M is the reflector's module and L is the LINK command. +By default, if the target is unavailable or becomes unavialable, QnetLink +will attempt to re-link approximately every 50 seconds, at least until +an unlinking command is sent. You will hear status of the connection attempt +about every 50 seconds. If the target sends an unlink request, QnetLink will +honor the request and not attempt to relink until another linking command is +given. This automatic re-linking can be disabled with: + +module_x_auto_link=false + +in your configuration file, qn.cfg. Here the "x" is the module, "a", "b" +or "c". This variable can be set in the qnconfig if executing in +expert mode: + +./qnconfig expert + Note about linking: After linking succeeds, set YRCALL=CQCQCQ because your audio will go to the remote reflector ONLY if YRCALL=CQCQCQ. diff --git a/QnetLink.cpp b/QnetLink.cpp index 0ba24b7..2d9c2ac 100644 --- a/QnetLink.cpp +++ b/QnetLink.cpp @@ -52,7 +52,7 @@ #include "QnetConfigure.h" #include "QnetLink.h" -#define LINK_VERSION "QnetLink7.1.0" +#define LINK_VERSION "QnetLink-7.2" std::atomic CQnetLink::keep_running(true);