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
838a734c
Commit
838a734c
authored
May 22, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
173b501c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
2 deletions
+13
-2
src/ue/nas/mm/interface.cpp
src/ue/nas/mm/interface.cpp
+4
-0
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+1
-0
src/ue/nas/mm/radio.cpp
src/ue/nas/mm/radio.cpp
+5
-0
src/ue/nts.hpp
src/ue/nts.hpp
+2
-1
src/ue/rrc/connection.cpp
src/ue/rrc/connection.cpp
+1
-1
No files found.
src/ue/nas/mm/interface.cpp
View file @
838a734c
...
...
@@ -50,6 +50,10 @@ void NasMm::handleRrcEvent(const NwUeRrcToNas &msg)
handleActiveCellChange
();
break
;
}
case
NwUeRrcToNas
:
:
RRC_ESTABLISHMENT_FAILURE
:
{
handleRrcEstablishmentFailure
();
break
;
}
}
}
...
...
src/ue/nas/mm/mm.hpp
View file @
838a734c
...
...
@@ -164,6 +164,7 @@ class NasMm
void
handleActiveCellChange
();
void
handleRrcConnectionSetup
();
void
handleRrcConnectionRelease
();
void
handleRrcEstablishmentFailure
();
void
handleRadioLinkFailure
();
void
handlePaging
(
const
std
::
vector
<
GutiMobileIdentity
>
&
tmsiIds
);
...
...
src/ue/nas/mm/radio.cpp
View file @
838a734c
...
...
@@ -221,6 +221,11 @@ void NasMm::handleRrcConnectionRelease()
switchCmState
(
ECmState
::
CM_IDLE
);
}
void
NasMm
::
handleRrcEstablishmentFailure
()
{
}
void
NasMm
::
handleRadioLinkFailure
()
{
if
(
m_cmState
==
ECmState
::
CM_CONNECTED
)
...
...
src/ue/nts.hpp
View file @
838a734c
...
...
@@ -64,12 +64,13 @@ struct NwUeRrcToNas : NtsMessage
{
enum
PR
{
NAS_NOTIFY
,
NAS_DELIVERY
,
RRC_CONNECTION_SETUP
,
RRC_CONNECTION_RELEASE
,
RRC_ESTABLISHMENT_FAILURE
,
RADIO_LINK_FAILURE
,
PAGING
,
NAS_NOTIFY
,
ACTIVE_CELL_CHANGED
}
present
;
...
...
src/ue/rrc/connection.cpp
View file @
838a734c
...
...
@@ -96,8 +96,8 @@ void UeRrcTask::receiveRrcReject(int cellId, const ASN_RRC_RRCReject &msg)
if
(
!
isActiveCell
(
cellId
))
return
;
// TODO
m_logger
->
err
(
"RRC Reject received"
);
m_base
->
nasTask
->
push
(
new
NwUeRrcToNas
(
NwUeRrcToNas
::
RRC_ESTABLISHMENT_FAILURE
));
}
void
UeRrcTask
::
receiveRrcRelease
(
const
ASN_RRC_RRCRelease
&
msg
)
...
...
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