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
3ebb382d
Commit
3ebb382d
authored
Dec 30, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Performance improvements
parent
4b1a40a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
src/ue/rls/udp_task.cpp
src/ue/rls/udp_task.cpp
+1
-2
src/ue/rls/udp_task.hpp
src/ue/rls/udp_task.hpp
+1
-1
No files found.
src/ue/rls/udp_task.cpp
View file @
3ebb382d
...
...
@@ -28,7 +28,7 @@ RlsUdpTask::RlsUdpTask(TaskBase *base, RlsSharedContext *shCtx)
{
m_logger
=
base
->
logBase
->
makeUniqueLogger
(
base
->
config
->
getLoggerPrefix
()
+
"rls-udp"
);
m_server
=
new
udp
::
UdpServerTask
(
this
);
m_server
=
std
::
make_unique
<
udp
::
UdpServerTask
>
(
this
);
for
(
auto
&
ip
:
base
->
config
->
gnbSearchList
)
m_searchSpace
.
emplace_back
(
ip
,
cons
::
RadioLinkPort
);
...
...
@@ -69,7 +69,6 @@ void RlsUdpTask::onLoop()
void
RlsUdpTask
::
onQuit
()
{
m_server
->
quit
();
delete
m_server
;
}
void
RlsUdpTask
::
sendRlsPdu
(
const
InetAddress
&
addr
,
const
rls
::
RlsMessage
&
msg
)
...
...
src/ue/rls/udp_task.hpp
View file @
3ebb382d
...
...
@@ -35,7 +35,7 @@ class RlsUdpTask : public NtsTask
private:
TaskBase
*
m_base
;
std
::
unique_ptr
<
Logger
>
m_logger
;
udp
::
UdpServerTask
*
m_server
;
std
::
unique_ptr
<
udp
::
UdpServerTask
>
m_server
;
RlsSharedContext
*
m_shCtx
;
std
::
vector
<
InetAddress
>
m_searchSpace
;
std
::
unordered_map
<
uint64_t
,
CellInfo
>
m_cells
;
...
...
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