Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
UERANSIM
Commits
aee8e2b6
Commit
aee8e2b6
authored
May 23, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
fab5b46e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+13
-0
No files found.
src/ue/nas/mm/radio.cpp
View file @
aee8e2b6
...
...
@@ -174,10 +174,23 @@ void NasMm::handleActiveCellChange(const Tai &prevTai)
{
resetRegAttemptCounter
();
}
// "Shall initiate a registration procedure for mobility and periodic registration update when the tracking area
// of the serving cell has changed, if timer T3346 is not running, the PLMN identity of the new cell is not in
// one of the forbidden PLMN lists and the tracking area is not in one of the lists of 5GS forbidden tracking
// area"
if
(
!
m_timers
->
t3346
.
isRunning
()
&&
currentCell
.
category
==
ECellCategory
::
SUITABLE_CELL
)
{
mobilityUpdatingRequired
(
ERegUpdateCause
::
UNSPECIFIED
);
}
}
if
(
currentCell
.
hasValue
()
&&
prevTai
.
plmn
!=
currentTai
.
plmn
)
{
// "Shall initiate a registration procedure for mobility and periodic registration update when entering a new
// PLMN, if timer T3346 is running and the new PLMN is not equivalent to the PLMN where the UE started timer
// T3346, the PLMN identity of the new cell is not in the forbidden PLMN lists, and the tracking area is not in
// one of the lists of 5GS forbidden tracking areas"
if
(
m_mmSubState
==
EMmSubState
::
MM_REGISTERED_ATTEMPTING_REGISTRATION_UPDATE
&&
m_timers
->
t3346
.
isRunning
()
&&
!
m_storage
->
equivalentPlmnList
->
contains
(
currentTai
.
plmn
)
&&
currentCell
.
category
==
ECellCategory
::
SUITABLE_CELL
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment