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
52b78fe2
Commit
52b78fe2
authored
Apr 04, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Service request initiation
parent
b276eeb1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+2
-0
src/ue/nas/mm/service.cpp
src/ue/nas/mm/service.cpp
+1
-0
No files found.
src/ue/nas/mm/mm.hpp
View file @
52b78fe2
...
@@ -44,6 +44,8 @@ class NasMm
...
@@ -44,6 +44,8 @@ class NasMm
std
::
unique_ptr
<
nas
::
ServiceRequest
>
m_lastServiceRequest
{};
std
::
unique_ptr
<
nas
::
ServiceRequest
>
m_lastServiceRequest
{};
// Indicates the last de-registration cause
// Indicates the last de-registration cause
EDeregCause
m_lastDeregCause
{};
EDeregCause
m_lastDeregCause
{};
// Indicates the last service request cause
EServiceReqCause
m_lastServiceReqCause
{};
// Last time PLMN search is triggered
// Last time PLMN search is triggered
long
m_lastPlmnSearchTrigger
{};
long
m_lastPlmnSearchTrigger
{};
// Registration attempt counter
// Registration attempt counter
...
...
src/ue/nas/mm/service.cpp
View file @
52b78fe2
...
@@ -105,6 +105,7 @@ void NasMm::sendServiceRequest(EServiceReqCause reqCause)
...
@@ -105,6 +105,7 @@ void NasMm::sendServiceRequest(EServiceReqCause reqCause)
// Send the message and process the timers
// Send the message and process the timers
sendNasMessage
(
*
request
);
sendNasMessage
(
*
request
);
m_lastServiceRequest
=
std
::
move
(
request
);
m_lastServiceRequest
=
std
::
move
(
request
);
m_lastServiceReqCause
=
reqCause
;
m_timers
->
t3517
.
start
();
m_timers
->
t3517
.
start
();
switchMmState
(
EMmState
::
MM_SERVICE_REQUEST_INITIATED
,
EMmSubState
::
MM_SERVICE_REQUEST_INITIATED_NA
);
switchMmState
(
EMmState
::
MM_SERVICE_REQUEST_INITIATED
,
EMmSubState
::
MM_SERVICE_REQUEST_INITIATED_NA
);
}
}
...
...
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