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
3c6027ce
Commit
3c6027ce
authored
May 23, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
L3 RRC/NAS developments
parent
4d22e551
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
src/ue/nas/mm/mm.hpp
src/ue/nas/mm/mm.hpp
+1
-1
src/ue/nas/mm/transport.cpp
src/ue/nas/mm/transport.cpp
+7
-3
No files found.
src/ue/nas/mm/mm.hpp
View file @
3c6027ce
...
...
@@ -101,7 +101,7 @@ class NasMm
private:
/* Transport */
void
receiveDlNasTransport
(
const
nas
::
DlNasTransport
&
msg
);
void
deliverUlTransport
(
const
nas
::
UlNasTransport
&
msg
);
EProcRc
deliverUlTransport
(
const
nas
::
UlNasTransport
&
msg
);
private:
/* Registration */
EProcRc
sendInitialRegistration
(
EInitialRegCause
regCause
);
...
...
src/ue/nas/mm/transport.cpp
View file @
3c6027ce
...
...
@@ -107,7 +107,7 @@ void NasMm::receiveDlNasTransport(const nas::DlNasTransport &msg)
}
}
void
NasMm
::
deliverUlTransport
(
const
nas
::
UlNasTransport
&
msg
)
EProcRc
NasMm
::
deliverUlTransport
(
const
nas
::
UlNasTransport
&
msg
)
{
// 5.4.5.2.6 Abnormal cases in the UE
// "The UE shall not send the UL NAS TRANSPORT message when the UE is in non-allowed area or
...
...
@@ -126,12 +126,16 @@ void NasMm::deliverUlTransport(const nas::UlNasTransport &msg)
msg
.
payloadContainerType
.
payloadContainerType
==
nas
::
EPayloadContainerType
::
SMS
)
{
m_logger
->
err
(
"Ul Nas Transport procedure canceled, UE is not in allowed area"
);
return
;
return
EProcRc
::
STAY
;
}
}
// Send the UL NAS Transport Message
sendNasMessage
(
msg
);
auto
rc
=
sendNasMessage
(
msg
);
if
(
rc
!=
EProcRc
::
OK
)
return
rc
;
return
EProcRc
::
OK
;
}
}
// namespace nr::ue
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