Commit 21d251c6 authored by Tien Thinh NGUYEN's avatar Tien Thinh NGUYEN

To Json: remove SD for standardize SST

parent 1f899261
...@@ -823,12 +823,6 @@ void amf_config::display() { ...@@ -823,12 +823,6 @@ void amf_config::display() {
Logger::config().info( Logger::config().info(
" Use HTTP2..............: %s", " Use HTTP2..............: %s",
support_features.use_http2 ? "Yes" : "No"); support_features.use_http2 ? "Yes" : "No");
// SHOULD BE REMOVED
nlohmann::json json_data = {};
to_json(json_data);
Logger::config().info(
" JSON..............:\n %s", json_data.dump().c_str());
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
......
...@@ -127,11 +127,11 @@ typedef struct { ...@@ -127,11 +127,11 @@ typedef struct {
std::string random; std::string random;
nlohmann::json to_json() const { nlohmann::json to_json() const {
nlohmann::json json_data = {}; nlohmann::json json_data = {};
json_data["mysql_server"] = mysql_server; json_data["mysql_server"] = this->mysql_server;
json_data["mysql_user"] = mysql_user; json_data["mysql_user"] = this->mysql_user;
json_data["mysql_pass"] = mysql_pass; json_data["mysql_pass"] = this->mysql_pass;
json_data["mysql_db"] = mysql_db; json_data["mysql_db"] = this->mysql_db;
json_data["random"] = random; json_data["random"] = this->random;
return json_data; return json_data;
} }
} auth_conf; } auth_conf;
...@@ -176,11 +176,11 @@ typedef struct guami_s { ...@@ -176,11 +176,11 @@ typedef struct guami_s {
nlohmann::json to_json() const { nlohmann::json to_json() const {
nlohmann::json json_data = {}; nlohmann::json json_data = {};
json_data["mcc"] = mcc; json_data["mcc"] = this->mcc;
json_data["mnc"] = mnc; json_data["mnc"] = this->mnc;
json_data["regionID"] = regionID; json_data["regionID"] = this->regionID;
json_data["AmfSetID"] = AmfSetID; json_data["AmfSetID"] = this->AmfSetID;
json_data["AmfPointer"] = AmfPointer; json_data["AmfPointer"] = this->AmfPointer;
return json_data; return json_data;
} }
} guami_t; } guami_t;
...@@ -204,8 +204,8 @@ typedef struct slice_s { ...@@ -204,8 +204,8 @@ typedef struct slice_s {
} }
nlohmann::json to_json() const { nlohmann::json to_json() const {
nlohmann::json json_data = {}; nlohmann::json json_data = {};
json_data["sst"] = sst; json_data["sst"] = this->sst;
json_data["sd"] = sd; if (sst > 127) json_data["sd"] = this->sd;
return json_data; return json_data;
} }
...@@ -220,8 +220,8 @@ typedef struct plmn_support_item_s { ...@@ -220,8 +220,8 @@ typedef struct plmn_support_item_s {
nlohmann::json to_json() const { nlohmann::json to_json() const {
nlohmann::json json_data = {}; nlohmann::json json_data = {};
json_data["mcc"] = this->mcc; json_data["mcc"] = this->mcc;
json_data["mnc"] = mnc; json_data["mnc"] = this->mnc;
json_data["tac"] = tac; json_data["tac"] = this->tac;
json_data["slice_list"] = nlohmann::json::array(); json_data["slice_list"] = nlohmann::json::array();
for (auto s : slice_list) { for (auto s : slice_list) {
json_data["slice_list"].push_back(s.to_json()); json_data["slice_list"].push_back(s.to_json());
......
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