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
76c64f41
Commit
76c64f41
authored
Apr 26, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE generic configuration update abnormla case 'c' handling
parent
845e8471
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
src/ue/nas/mm/config.cpp
src/ue/nas/mm/config.cpp
+12
-0
No files found.
src/ue/nas/mm/config.cpp
View file @
76c64f41
...
...
@@ -16,6 +16,18 @@ namespace nr::ue
void
NasMm
::
receiveConfigurationUpdate
(
const
nas
::
ConfigurationUpdateCommand
&
msg
)
{
// Abnormal case: 5.4.4.5, c) Generic UE configuration update and de-registration procedure collision
if
(
m_mmState
==
EMmState
::
MM_DEREGISTERED_INITIATED
)
{
// "If the UE receives CONFIGURATION UPDATE COMMAND message after sending a DEREGISTRATION REQUEST message and
// the access type included in the DEREGISTRATION REQUEST message is same as the access in which the
// CONFIGURATION UPDATE COMMAND message is received, then the UE shall ignore the CONFIGURATION UPDATE COMMAND
// message and proceed with the de-registration procedure. Otherwise, the UE shall proceed with both the
// procedures."
m_logger
->
warn
(
"Configuration Update Command ignored because of the De-registration procedure collusion"
);
return
;
}
// Indicates there exists at least one configuration to be updated
bool
hasNewConfig
=
false
;
...
...
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