Commit 96e3dd5b authored by aligungr's avatar aligungr

PS establishment over CLI

parent 70e69d74
...@@ -140,6 +140,16 @@ void UeCmdHandler::handleCmdImpl(NwUeCliCommand &msg) ...@@ -140,6 +140,16 @@ void UeCmdHandler::handleCmdImpl(NwUeCliCommand &msg)
sendResult(msg.address, "PDU session release procedure(s) triggered"); sendResult(msg.address, "PDU session release procedure(s) triggered");
break; break;
} }
case app::UeCliCommand::PS_ESTABLISH: {
SessionConfig config{};
config.type = nas::EPduSessionType::IPV4;
config.isEmergency = msg.cmd->isEmergency;
config.apn = msg.cmd->apn;
config.sNssai = msg.cmd->sNssai;
m_base->nasTask->sm->sendEstablishmentRequest(config);
sendResult(msg.address, "PDU session establishment procedure triggered");
break;
}
} }
} }
......
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