diff --git a/.gitignore b/.gitignore index 8690511..cda52ac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.o *.d +*.gch qnitap qndvap qndvrptr diff --git a/QnetLink.cpp b/QnetLink.cpp index 8dd2d50..5293478 100644 --- a/QnetLink.cpp +++ b/QnetLink.cpp @@ -2300,8 +2300,8 @@ void CQnetLink::Process() if ((inbound_list.size() + 1) > max_dongles) printf("Inbound DONGLE-p connection from %s but over the max_dongles limit of %d\n", ip, (int)inbound_list.size()); - else if (admin.size() && (admin.find(call) == admin.end())) - printf("Incoming call [%s] from %s not an ADMIN\n", call, ip); + //else if (admin.size() && (admin.find(call) == admin.end())) + // printf("Incoming call [%s] from %s not an ADMIN\n", call, ip); else if (regexec(&preg, call, 0, NULL, 0) != 0) { printf("Invalid dongle callsign: CALL=%s,ip=%s\n", call, ip); diff --git a/qn.everything.cfg b/qn.everything.cfg index 8045207..280e2f8 100644 --- a/qn.everything.cfg +++ b/qn.everything.cfg @@ -266,7 +266,7 @@ link = { # to link repeater module B to REF001 C, use "BREF001C" # ref_login = "" # for loging into REF reflectors, if undefined, ircddb.username will be used # admin = [ "CALL1", "CALL2", "CALL3" ] # only these users can execute scripts, block dongles and reload the gwys.txt - # you probabaly want you own callsign in the admin list! + # you probably want you own callsign in the admin list! # link_unlink = [ "CALL4", "CALL5", "CALL6" ] # if defined, only these users can link and unlink a repeater # no_link_unlink = [ "CALL7", "CALL8", "CALL9" ] # if defined, these users cannot link or unlink, it's a blacklist # if the blacklist is defined (even if it's empty), the link_unlink will not be read @@ -277,8 +277,8 @@ link = { # xrf_port = 30001 # port for XRF linking, don't change # dcs_port = 30051 # port for DCS linking, don't change # announce = true # do link, unlink, etc. announcements -# acknowledge = true # send text acknowledgement on key-up -# max_dongles = 5 # maximum number of linked hotspots +# acknowledge = true # send text acknowledgment on key-up +# max_dongles = 5 # maximum number of linked hot-spots } file = { diff --git a/versions.h b/versions.h index 9cfef06..9d787f6 100644 --- a/versions.h +++ b/versions.h @@ -1,6 +1,6 @@ // version strings must be 55 characters or less! #define IRCDDB_VERSION "QnetGateway-7.0.1" -#define LINK_VERSION "QnetLink-6.0.1" +#define LINK_VERSION "QnetLink-6.0.2" #define DVAP_VERSION "QnetDVAP-5.1.1" #define RELAY_VERSION "QnetRelay-0.2.1" #define ITAP_VERSION "QnetITAP-0.2.0"