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
7831c0d8
Commit
7831c0d8
authored
Dec 29, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Performance improvements
parent
5f7abfea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
7 deletions
+1
-7
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+1
-2
src/ue/nts.hpp
src/ue/nts.hpp
+0
-1
src/ue/rrc/sap.cpp
src/ue/rrc/sap.cpp
+0
-4
No files found.
src/ue/nas/mm/radio.cpp
View file @
7831c0d8
...
...
@@ -106,8 +106,7 @@ void NasMm::performPlmnSelection()
else
if
(
lastSelectedPlmn
!=
selected
)
{
m_logger
->
info
(
"Selected plmn[%s]"
,
ToJson
(
selected
).
str
().
c_str
());
m_base
->
l3Task
->
push
(
std
::
make_unique
<
NmUeNasToRrc
>
(
NmUeNasToRrc
::
RRC_NOTIFY
));
triggerMmCycle
();
resetRegAttemptCounter
();
}
...
...
src/ue/nts.hpp
View file @
7831c0d8
...
...
@@ -91,7 +91,6 @@ struct NmUeNasToRrc : NtsMessage
{
LOCAL_RELEASE_CONNECTION
,
UPLINK_NAS_DELIVERY
,
RRC_NOTIFY
,
}
present
;
// UPLINK_NAS_DELIVERY
...
...
src/ue/rrc/sap.cpp
View file @
7831c0d8
...
...
@@ -52,10 +52,6 @@ void UeRrcLayer::handleNasSapMessage(NmUeNasToRrc &msg)
m_base
->
l3Task
->
push
(
std
::
make_unique
<
NmUeRrcToNas
>
(
NmUeRrcToNas
::
RRC_CONNECTION_RELEASE
));
break
;
}
case
NmUeNasToRrc
:
:
RRC_NOTIFY
:
{
triggerCycle
();
break
;
}
}
}
...
...
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