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

@ -22,11 +22,15 @@ typedef struct OpenAPI_qos_flow_item_s OpenAPI_qos_flow_item_t;
typedef struct OpenAPI_qos_flow_item_s {
int qfi;
OpenAPI_cause_e cause;
int current_qos_profile_index;
int null_qo_s_profile_index;
} OpenAPI_qos_flow_item_t;
OpenAPI_qos_flow_item_t *OpenAPI_qos_flow_item_create(
int qfi,
OpenAPI_cause_e cause
OpenAPI_cause_e cause,
int current_qos_profile_index,
int null_qo_s_profile_index
);
void OpenAPI_qos_flow_item_free(OpenAPI_qos_flow_item_t *qos_flow_item);
OpenAPI_qos_flow_item_t *OpenAPI_qos_flow_item_parseFromJSON(cJSON *qos_flow_itemJSON);