mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-07 23:43:51 +00:00
more logging tidying for acl
This commit is contained in:
parent
cb9ec738e1
commit
63584b4a3a
2 changed files with 3 additions and 3 deletions
|
|
@ -1488,7 +1488,7 @@ 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 10000 unless specifically whitelisted.
|
||||
if(gt4k) {
|
||||
if (std::find(m_dstWhiteListSlot1.begin(), m_dstWhiteListSlot1.end(), did) != m_dstWhiteListSlot1.end() || did >= 10000) {
|
||||
|
||||
|
|
@ -1502,7 +1502,7 @@ bool CDMRSlot::DstIdWhitelist(unsigned int did, unsigned int slot, bool gt4k)
|
|||
} else {
|
||||
if(m_dstWhiteListSlot2.size() == 0)
|
||||
return true;
|
||||
//On slot2 we allow reflector control IDs, but not secondary TG IDs unless specifically listed
|
||||
//On slot2 we allow reflector control IDs, but not secondary TG IDs unless specifically listed. Also allow echo.
|
||||
if(gt4k) {
|
||||
if (std::find(m_dstWhiteListSlot2.begin(), m_dstWhiteListSlot2.end(), did) != m_dstWhiteListSlot2.end() || did >= 4000) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue