Commit 42e55035 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix CPP check warning

parent 233004be
...@@ -344,11 +344,13 @@ class smf_config { ...@@ -344,11 +344,13 @@ class smf_config {
} }
sbi_http2_port = 8080; sbi_http2_port = 8080;
sbi_api_version = "v1"; sbi_api_version = "v1";
http_version = 1;
use_local_subscription_info = false; use_local_subscription_info = false;
register_nrf = false; register_nrf = false;
discover_upf = false; discover_upf = false;
use_fqdn_dns = false; use_fqdn_dns = false;
use_nwi = false;
}; };
~smf_config(); ~smf_config();
void lock() { m_rw_lock.lock(); }; void lock() { m_rw_lock.lock(); };
......
...@@ -133,6 +133,8 @@ class smf_pdu_session : public std::enable_shared_from_this<smf_pdu_session> { ...@@ -133,6 +133,8 @@ class smf_pdu_session : public std::enable_shared_from_this<smf_pdu_session> {
timer_T3590 = ITTI_INVALID_TIMER_ID; timer_T3590 = ITTI_INVALID_TIMER_ID;
timer_T3591 = ITTI_INVALID_TIMER_ID; timer_T3591 = ITTI_INVALID_TIMER_ID;
timer_T3592 = ITTI_INVALID_TIMER_ID; timer_T3592 = ITTI_INVALID_TIMER_ID;
number_of_supported_packet_filters = 0;
maximum_number_of_supported_packet_filters = 0;
} }
void clear() { void clear() {
......
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