diff --git a/DMRSlot.cpp b/DMRSlot.cpp index e1bf1fe..c0c8f7b 100644 --- a/DMRSlot.cpp +++ b/DMRSlot.cpp @@ -1488,9 +1488,9 @@ bool CDMRSlot::DstIdWhitelist(unsigned int did, unsigned int slot, bool gt4k) if (slot == 1) { if(m_dstWhiteListSlot1.size() == 0) return true; - // No reflectors on slot1, so we only allow all IDs over 10000 unless specifically whitelisted. + // No reflectors on slot1, so we only allow all IDs over 99999 unless specifically whitelisted. if(gt4k) { - if (std::find(m_dstWhiteListSlot1.begin(), m_dstWhiteListSlot1.end(), did) != m_dstWhiteListSlot1.end() || did >= 10000) { + if (std::find(m_dstWhiteListSlot1.begin(), m_dstWhiteListSlot1.end(), did) != m_dstWhiteListSlot1.end() || did >= 99999) { return true; } diff --git a/README.DMR_ACL b/README.DMR_ACL index 9103442..9fb7a58 100644 --- a/README.DMR_ACL +++ b/README.DMR_ACL @@ -16,9 +16,9 @@ If the whitelist is null and commented out, it is disabled. The whitelist behaves slightly differently on Slot1 than is does on Slot2. -For Slot1, the whitelist will allow all IDs above 10000 and everything in the whitelist. +For Slot1, the whitelist will allow all IDs above 99999 and everything in the whitelist. -For Slot2, the whitelist will allow all IDs between 4000 and 5000, IDs above 10000 and everything in the whitelist. +For Slot2, the whitelist will allow all IDs between 4000 and 5000, IDs above 99999 and everything in the whitelist. You can use the blacklist with the whitelist if you want to specifically block IDs within the allowed ranges above.