Add only one 5GC scenario (call-flow)

This commit is contained in:
Sukchan Lee 2020-06-17 01:22:28 -04:00
parent 20008b6a13
commit dbee687a75
1415 changed files with 86635 additions and 5877 deletions

View file

@ -36,7 +36,7 @@ typedef struct OpenAPI_amf3_gpp_access_registration_s {
struct OpenAPI_guami_s *guami;
OpenAPI_list_t *backup_amf_info;
int dr_flag;
struct OpenAPI_rat_type_s *rat_type;
OpenAPI_rat_type_e rat_type;
int urrp_indicator;
char *amf_ee_subscription_id;
int ue_srvcc_capability;
@ -61,7 +61,7 @@ OpenAPI_amf3_gpp_access_registration_t *OpenAPI_amf3_gpp_access_registration_cre
OpenAPI_guami_t *guami,
OpenAPI_list_t *backup_amf_info,
int dr_flag,
OpenAPI_rat_type_t *rat_type,
OpenAPI_rat_type_e rat_type,
int urrp_indicator,
char *amf_ee_subscription_id,
int ue_srvcc_capability,
@ -74,6 +74,7 @@ OpenAPI_amf3_gpp_access_registration_t *OpenAPI_amf3_gpp_access_registration_cre
void OpenAPI_amf3_gpp_access_registration_free(OpenAPI_amf3_gpp_access_registration_t *amf3_gpp_access_registration);
OpenAPI_amf3_gpp_access_registration_t *OpenAPI_amf3_gpp_access_registration_parseFromJSON(cJSON *amf3_gpp_access_registrationJSON);
cJSON *OpenAPI_amf3_gpp_access_registration_convertToJSON(OpenAPI_amf3_gpp_access_registration_t *amf3_gpp_access_registration);
OpenAPI_amf3_gpp_access_registration_t *OpenAPI_amf3_gpp_access_registration_copy(OpenAPI_amf3_gpp_access_registration_t *dst, OpenAPI_amf3_gpp_access_registration_t *src);
#ifdef __cplusplus
}