diff --git a/CONFIGURING b/CONFIGURING index 3d0d601..32a9b12 100644 --- a/CONFIGURING +++ b/CONFIGURING @@ -236,6 +236,7 @@ prompts used by QnetGateway and QnetLink: connected2network.dat notincache.dat +gatewaynotfound.dat already_linked.dat already_unlinked.dat failed_link.dat @@ -255,7 +256,7 @@ are NOT anyone's voice. The only file most hams will need to change is id.dat. When the gateway is not linked and the RF user sets YRCALL=_______I to request the status of the link, the file id.dat will be played back over RF. But -you should create your own id.dat file that should identify your own +you can create your own id.dat file that should identify your own repeater with extra information if you like. For example, you could create your own dat audio file that contains diff --git a/QnetLink.cpp b/QnetLink.cpp index 45416ad..e962c6e 100644 --- a/QnetLink.cpp +++ b/QnetLink.cpp @@ -928,6 +928,8 @@ void CQnetLink::g2link(char from_mod, char *call, char to_mod) auto gwy_pos = gwy_list.find(call); if (gwy_pos == gwy_list.end()) { + sprintf(notify_msg, "%c_gatewaynotfound.dat_GATEWAY_NOT_FOUND", from_mod); + audio_notify(notify_msg); printf("%s not found in gwy list\n", call); return; } diff --git a/announce/gatewaynotfound.dat b/announce/gatewaynotfound.dat new file mode 100644 index 0000000..2c1de69 Binary files /dev/null and b/announce/gatewaynotfound.dat differ diff --git a/versions.h b/versions.h index 06d324a..5b27055 100644 --- a/versions.h +++ b/versions.h @@ -1,6 +1,6 @@ // version strings must be 55 characters or less! #define IRCDDB_VERSION "QnetGateway-7.4.4" -#define LINK_VERSION "QnetLink-6.2.0" +#define LINK_VERSION "QnetLink-6.2.1" #define DVAP_VERSION "QnetDVAP-5.1.2" #define RELAY_VERSION "QnetRelay-0.2.3" #define ITAP_VERSION "QnetITAP-0.2.1"