Commit 5476d10a authored by aligungr's avatar aligungr

L3 RRC/NAS developments

parent d71d6d97
......@@ -185,4 +185,20 @@ void NasMm::invokeProcedures()
}
}
bool NasMm::hasPendingProcedure()
{
if (m_procCtl.initialRegistration)
return true;
if (m_procCtl.mobilityRegistration)
return true;
if (m_procCtl.serviceRequest)
return true;
if (m_procCtl.deregistration)
return true;
// TODO: Check for SM sublayer, (and other stacks in the future such as SMS) because they are transported over MM.
// NOTE: Other MM common procedures are ignored. (Except UL/DL NAS Transport)
return false;
}
} // namespace nr::ue
\ No newline at end of file
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