Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
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
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-SMF
Commits
f975276f
Commit
f975276f
authored
Aug 23, 2021
by
Tien-Thinh Nguyen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleanup
parent
7513eb38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
12 deletions
+1
-12
src/smf_app/smf_app.cpp
src/smf_app/smf_app.cpp
+0
-10
src/smf_app/smf_context.cpp
src/smf_app/smf_context.cpp
+1
-2
No files found.
src/smf_app/smf_app.cpp
View file @
f975276f
...
...
@@ -534,16 +534,6 @@ void smf_app::handle_itti_msg(std::shared_ptr<itti_n4_node_failure> snf) {
// TODO: remove the session
}
}
/*
if (it.second->upf_node_id == node_id) {
supi64_t supi64 = smf_supi_to_u64(it.second->supi);
Logger::smf_app().debug(
"Remove the associated PDU session (SUPI " SUPI_64_FMT
", PDU Sessin Id %d)",
supi64, it.second->pdu_session_id);
// TODO: remove the session
}
*/
}
}
...
...
src/smf_app/smf_context.cpp
View file @
f975276f
...
...
@@ -397,9 +397,8 @@ std::string smf_pdu_session::toString() const {
bool
is_released
=
false
;
if
(
pdu_session_status
==
pdu_session_status_e
::
PDU_SESSION_INACTIVE
)
is_released
=
true
;
// s.append("PDN CONNECTION:\n");
if
(
!
is_released
)
{
s
.
append
(
"
\t
PDU Session ID:
\t\t
\t
"
)
s
.
append
(
"
\t
PDU Session ID:
\t\t
"
)
.
append
(
std
::
to_string
((
uint8_t
)
pdu_session_id
))
.
append
(
"
\n
"
);
s
.
append
(
"
\t
DNN:
\t\t\t
"
).
append
(
dnn
).
append
(
"
\n
"
);
...
...
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