mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
comply with coding standard
This commit is contained in:
parent
f278d58a69
commit
2471b1b53d
562 changed files with 3332 additions and 3332 deletions
|
|
@ -162,7 +162,7 @@ OpenAPI_pp_data_t *OpenAPI_pp_data_parseFromJSON(cJSON *pp_dataJSON)
|
|||
OpenAPI_communication_characteristics_t *communication_characteristics_local_nonprim = NULL;
|
||||
if (communication_characteristics) {
|
||||
communication_characteristics_local_nonprim = OpenAPI_communication_characteristics_parseFromJSON(communication_characteristics);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *supported_features = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "supportedFeatures");
|
||||
|
||||
|
|
@ -171,28 +171,28 @@ OpenAPI_pp_data_t *OpenAPI_pp_data_parseFromJSON(cJSON *pp_dataJSON)
|
|||
ogs_error("OpenAPI_pp_data_parseFromJSON() failed [supported_features]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *expected_ue_behaviour_parameters = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "expectedUeBehaviourParameters");
|
||||
|
||||
OpenAPI_expected_ue_behaviour_t *expected_ue_behaviour_parameters_local_nonprim = NULL;
|
||||
if (expected_ue_behaviour_parameters) {
|
||||
expected_ue_behaviour_parameters_local_nonprim = OpenAPI_expected_ue_behaviour_parseFromJSON(expected_ue_behaviour_parameters);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *ec_restriction = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "ecRestriction");
|
||||
|
||||
OpenAPI_ec_restriction_t *ec_restriction_local_nonprim = NULL;
|
||||
if (ec_restriction) {
|
||||
ec_restriction_local_nonprim = OpenAPI_ec_restriction_parseFromJSON(ec_restriction);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *acs_info = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "acsInfo");
|
||||
|
||||
OpenAPI_acs_info_rm_t *acs_info_local_nonprim = NULL;
|
||||
if (acs_info) {
|
||||
acs_info_local_nonprim = OpenAPI_acs_info_rm_parseFromJSON(acs_info);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *stn_sr = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "stnSr");
|
||||
|
||||
|
|
@ -201,21 +201,21 @@ OpenAPI_pp_data_t *OpenAPI_pp_data_parseFromJSON(cJSON *pp_dataJSON)
|
|||
ogs_error("OpenAPI_pp_data_parseFromJSON() failed [stn_sr]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *lcs_privacy = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "lcsPrivacy");
|
||||
|
||||
OpenAPI_lcs_privacy_t *lcs_privacy_local_nonprim = NULL;
|
||||
if (lcs_privacy) {
|
||||
lcs_privacy_local_nonprim = OpenAPI_lcs_privacy_parseFromJSON(lcs_privacy);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *sor_info = cJSON_GetObjectItemCaseSensitive(pp_dataJSON, "sorInfo");
|
||||
|
||||
OpenAPI_sor_info_t *sor_info_local_nonprim = NULL;
|
||||
if (sor_info) {
|
||||
sor_info_local_nonprim = OpenAPI_sor_info_parseFromJSON(sor_info);
|
||||
}
|
||||
}
|
||||
|
||||
pp_data_local_var = OpenAPI_pp_data_create (
|
||||
communication_characteristics ? communication_characteristics_local_nonprim : NULL,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue