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
c56364ac
Commit
c56364ac
authored
Apr 05, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Service request abnormal case handling improvements
parent
94d967a1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
src/ue/nas/mm/dereg.cpp
src/ue/nas/mm/dereg.cpp
+7
-0
src/ue/nas/mm/register.cpp
src/ue/nas/mm/register.cpp
+7
-0
No files found.
src/ue/nas/mm/dereg.cpp
View file @
c56364ac
...
...
@@ -158,6 +158,13 @@ void NasMm::receiveDeregistrationRequest(const nas::DeRegistrationRequestUeTermi
forceIgnoreReregistration
=
true
;
}
}
// 5.6.1.7 Abnormal cases in the UE (de-registration collision)
else
if
(
m_mmState
==
EMmState
::
MM_SERVICE_REQUEST_INITIATED
)
{
// "UE shall progress the DEREGISTRATION REQUEST message and the service request procedure shall be aborted."
// (no specific action is required herein to abort service request procedure)
(
void
)
0
;
}
bool
reRegistrationRequired
=
msg
.
deRegistrationType
.
reRegistrationRequired
==
nas
::
EReRegistrationRequired
::
REQUIRED
&&
...
...
src/ue/nas/mm/register.cpp
View file @
c56364ac
...
...
@@ -125,6 +125,13 @@ void NasMm::sendMobilityRegistration(ERegUpdateCause updateCause)
}
}
// 5.6.1.7 Abnormal cases in the UE
// d) Registration procedure for mobility and periodic registration update is triggered
if
(
m_mmState
==
EMmState
::
MM_SERVICE_REQUEST_INITIATED
)
{
m_timers
->
t3517
.
stop
();
}
m_logger
->
debug
(
"Sending %s with update cause [%s]"
,
nas
::
utils
::
EnumToString
(
updateCause
==
ERegUpdateCause
::
T3512_EXPIRY
?
nas
::
ERegistrationType
::
PERIODIC_REGISTRATION_UPDATING
...
...
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