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
bed51374
Commit
bed51374
authored
Mar 31, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Network initiated PDU session release impl.
parent
878f7629
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/gnb/gtp/task.cpp
src/gnb/gtp/task.cpp
+1
-1
src/gnb/ngap/session.cpp
src/gnb/ngap/session.cpp
+2
-2
No files found.
src/gnb/gtp/task.cpp
View file @
bed51374
...
...
@@ -188,7 +188,7 @@ void GtpTask::handleUplinkData(int ueId, int psi, OctetString &&pdu)
if
(
!
m_pduSessions
.
count
(
sessionInd
))
{
m_logger
->
err
(
"Uplink data failure, PDU session not found. UE
: %d PSI: %d
"
,
ueId
,
psi
);
m_logger
->
err
(
"Uplink data failure, PDU session not found. UE
[%d] PSI[%d]
"
,
ueId
,
psi
);
return
;
}
...
...
src/gnb/ngap/session.cpp
View file @
bed51374
...
...
@@ -199,10 +199,10 @@ void NgapTask::receiveSessionResourceSetupRequest(int amfId, ASN_NGAP_PDUSession
sendNgapUeAssociated
(
ue
->
ctxId
,
respPdu
);
if
(
failedList
.
empty
())
m_logger
->
info
(
"PDU session resource
is
setup for UE[%d] count[%d]"
,
ue
->
ctxId
,
m_logger
->
info
(
"PDU session resource
(s)
setup for UE[%d] count[%d]"
,
ue
->
ctxId
,
static_cast
<
int
>
(
successList
.
size
()));
else
if
(
successList
.
empty
())
m_logger
->
err
(
"PDU session resource setup was failed for UE[%d] count[%d]"
,
ue
->
ctxId
,
m_logger
->
err
(
"PDU session resource
(s)
setup was failed for UE[%d] count[%d]"
,
ue
->
ctxId
,
static_cast
<
int
>
(
failedList
.
size
()));
else
m_logger
->
err
(
"PDU session establishment is partially successful for UE[%d], success[%d], failed[%d]"
,
...
...
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