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
ccc1b1d7
Commit
ccc1b1d7
authored
May 23, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
0d4d87a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
2 deletions
+32
-2
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+4
-1
src/ue/nas/mm/proc.cpp
src/ue/nas/mm/proc.cpp
+27
-0
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+1
-1
No files found.
src/ue/nas/mm/mm.hpp
View file @
ccc1b1d7
...
...
@@ -161,7 +161,7 @@ class NasMm
private:
/* Radio */
void
performPlmnSelection
();
void
localReleaseConnection
();
void
handleActiveCellChange
(
const
Tai
&
prevTai
);
void
handleActiveCellChange
(
const
Tai
&
prevTai
);
void
handleRrcConnectionSetup
();
void
handleRrcConnectionRelease
();
void
handleRrcEstablishmentFailure
();
...
...
@@ -183,6 +183,9 @@ class NasMm
private:
/* Timer */
void
onTimerExpire
(
UeTimer
&
timer
);
private:
/* Procedure Control */
void
mobilityUpdatingRequired
(
ERegUpdateCause
cause
);
private:
/* Service Access Point */
void
handleRrcEvent
(
const
NmUeRrcToNas
&
msg
);
void
handleNasEvent
(
const
NmUeNasToNas
&
msg
);
...
...
src/ue/nas/mm/proc.cpp
0 → 100644
View file @
ccc1b1d7
//
// This file is a part of UERANSIM open source project.
// Copyright (c) 2021 ALİ GÜNGÖR.
//
// The software and all associated files are licensed under GPL-3.0
// and subject to the terms and conditions defined in LICENSE file.
//
#include "mm.hpp"
#include <algorithm>
#include <lib/nas/utils.hpp>
#include <ue/app/task.hpp>
#include <ue/nas/sm/sm.hpp>
#include <ue/rrc/task.hpp>
#include <utils/common.hpp>
namespace
nr
::
ue
{
void
NasMm
::
mobilityUpdatingRequired
(
ERegUpdateCause
cause
)
{
// TODO
}
}
// namespace nr::ue
\ No newline at end of file
src/ue/nas/mm/radio.cpp
View file @
ccc1b1d7
...
...
@@ -182,7 +182,7 @@ void NasMm::handleActiveCellChange(const Tai &prevTai)
!
m_storage
->
equivalentPlmnList
->
contains
(
currentTai
.
plmn
)
&&
currentCell
.
category
==
ECellCategory
::
SUITABLE_CELL
)
{
sendMobilityRegistration
(
ERegUpdateCause
::
UNSPECIFIED
);
mobilityUpdatingRequired
(
ERegUpdateCause
::
UNSPECIFIED
);
}
}
...
...
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