Commit 6a69de26 authored by aligungr's avatar aligungr

USIM validation on authentication procedure

parent 053aba61
......@@ -18,7 +18,10 @@ namespace nr::ue
void NasMm::receiveAuthenticationRequest(const nas::AuthenticationRequest &msg)
{
if (!m_validSim)
{
m_logger->warn("Authentication request is ignored. USIM is invalid");
return;
}
if (msg.eapMessage.has_value())
receiveAuthenticationRequestEap(msg);
......
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