arch: DB schema Changes (#796)

- New function : NSSF
- New feature : SMF selection
This commit is contained in:
Sukchan Lee 2021-03-08 21:25:09 +09:00
parent c6bfbed922
commit 9af4268bab
691 changed files with 40727 additions and 18985 deletions

View file

@ -24,7 +24,8 @@ typedef struct OpenAPI_authentication_info_request_s {
char *serving_network_name;
struct OpenAPI_resynchronization_info_s *resynchronization_info;
char *ausf_instance_id;
char *cag_id;
OpenAPI_list_t *cell_cag_info;
int n5gc_ind;
} OpenAPI_authentication_info_request_t;
OpenAPI_authentication_info_request_t *OpenAPI_authentication_info_request_create(
@ -32,7 +33,8 @@ OpenAPI_authentication_info_request_t *OpenAPI_authentication_info_request_creat
char *serving_network_name,
OpenAPI_resynchronization_info_t *resynchronization_info,
char *ausf_instance_id,
char *cag_id
OpenAPI_list_t *cell_cag_info,
int n5gc_ind
);
void OpenAPI_authentication_info_request_free(OpenAPI_authentication_info_request_t *authentication_info_request);
OpenAPI_authentication_info_request_t *OpenAPI_authentication_info_request_parseFromJSON(cJSON *authentication_info_requestJSON);