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

@ -40,6 +40,8 @@ typedef struct OpenAPI_upf_info_s {
struct OpenAPI_twif_info_s *twif_info;
int priority;
int redundant_gtpu;
int ipups;
int data_forwarding;
} OpenAPI_upf_info_t;
OpenAPI_upf_info_t *OpenAPI_upf_info_create(
@ -55,7 +57,9 @@ OpenAPI_upf_info_t *OpenAPI_upf_info_create(
OpenAPI_tngf_info_t *tngf_info,
OpenAPI_twif_info_t *twif_info,
int priority,
int redundant_gtpu
int redundant_gtpu,
int ipups,
int data_forwarding
);
void OpenAPI_upf_info_free(OpenAPI_upf_info_t *upf_info);
OpenAPI_upf_info_t *OpenAPI_upf_info_parseFromJSON(cJSON *upf_infoJSON);