if for some reason, you have grant demands, and are a conventional/DVRS site, don't handle any grant demands if traffic is in progress;

pull/72/head
Bryan Biedenkapp 1 year ago
parent 7736e03aef
commit b0369d272a

@ -1411,6 +1411,12 @@ void Control::processNetwork()
return; return;
} }
// if we're non-dedicated control, and if we're not in a listening or idle state, ignore any grant
// demands
if (!m_dedicatedControl && (m_rfState != RS_RF_LISTENING || m_netState != RS_NET_IDLE)) {
return;
}
// validate source RID // validate source RID
if (!acl::AccessControl::validateSrcId(srcId)) { if (!acl::AccessControl::validateSrcId(srcId)) {
return; return;

Loading…
Cancel
Save

Powered by TurnKey Linux.