Commit 1140c9c4 authored by aligungr's avatar aligungr

UAC for de-registration procedure

parent 8e8cc56b
......@@ -54,6 +54,14 @@ EProcRc NasMm::sendDeregistration(EDeregCause deregCause)
}
}
// Perform Unified Access Control
if (m_cmState == ECmState::CM_IDLE && performUac() != EUacResult::ALLOWED)
{
m_logger->warn("Performing local de-registration due to UAC");
performLocalDeregistration();
return EProcRc::CANCEL;
}
m_logger->debug("Starting de-registration procedure due to [%s]", ToJson(deregCause).str().c_str());
updateProvidedGuti();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment