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

@ -25,6 +25,7 @@ typedef struct OpenAPI_auth_event_s {
char *time_stamp;
OpenAPI_auth_type_e auth_type;
char *serving_network_name;
int auth_removal_ind;
} OpenAPI_auth_event_t;
OpenAPI_auth_event_t *OpenAPI_auth_event_create(
@ -32,7 +33,8 @@ OpenAPI_auth_event_t *OpenAPI_auth_event_create(
int success,
char *time_stamp,
OpenAPI_auth_type_e auth_type,
char *serving_network_name
char *serving_network_name,
int auth_removal_ind
);
void OpenAPI_auth_event_free(OpenAPI_auth_event_t *auth_event);
OpenAPI_auth_event_t *OpenAPI_auth_event_parseFromJSON(cJSON *auth_eventJSON);