Commit f975276f authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Code cleanup

parent 7513eb38
......@@ -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
}
*/
}
}
......
......@@ -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("\tPDU Session ID:\t\t\t")
s.append("\tPDU Session ID:\t\t")
.append(std::to_string((uint8_t) pdu_session_id))
.append("\n");
s.append("\tDNN:\t\t\t").append(dnn).append("\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment