Commit 9f667342 authored by aligungr's avatar aligungr

L3 RRC/NAS developments

parent 08e7344a
......@@ -47,7 +47,7 @@ void NasMm::handleRrcEvent(const NwUeRrcToNas &msg)
break;
}
case NwUeRrcToNas::ACTIVE_CELL_CHANGED: {
handleActiveCellChange(msg.lastTai);
handleActiveCellChange();
break;
}
}
......
......@@ -161,7 +161,7 @@ class NasMm
private: /* Radio */
void performPlmnSelection();
void localReleaseConnection();
void handleActiveCellChange(const Tai &lastTai);
void handleActiveCellChange();
void handleRrcConnectionSetup();
void handleRrcConnectionRelease();
void handleRadioLinkFailure();
......
......@@ -142,7 +142,7 @@ void NasMm::performPlmnSelection()
}
}
void NasMm::handleActiveCellChange(const Tai &lastTai)
void NasMm::handleActiveCellChange()
{
if (m_cmState == ECmState::CM_CONNECTED)
{
......
......@@ -79,9 +79,6 @@ struct NwUeRrcToNas : NtsMessage
// PAGING
std::vector<GutiMobileIdentity> pagingTmsi;
// ACTIVE_CELL_CHANGED
Tai lastTai;
explicit NwUeRrcToNas(PR present) : NtsMessage(NtsMessageType::UE_RRC_TO_NAS), present(present)
{
}
......
......@@ -28,7 +28,6 @@ void UeRrcTask::performCellSelection()
return;
int lastCell = m_base->shCtx.currentCell.get<int>([](auto &value) { return value.cellId; });
Tai lastTai = m_base->shCtx.getCurrentTai();
bool shouldLogErrors = lastCell != 0 || (currentTime - m_lastTimePlmnSearchFailureLogged >= 30'000LL);
......@@ -104,7 +103,6 @@ void UeRrcTask::performCellSelection()
m_base->rlsTask->push(w1);
auto w2 = new NwUeRrcToNas(NwUeRrcToNas::ACTIVE_CELL_CHANGED);
w2->lastTai = lastTai;
m_base->nasTask->push(w2);
}
}
......
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