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

@ -13,6 +13,7 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "cause.h"
#include "n4_information.h"
#include "ng_ap_cause.h"
#include "secondary_rat_usage_info.h"
#include "secondary_rat_usage_report.h"
@ -32,6 +33,9 @@ typedef struct OpenAPI_release_data_s {
struct OpenAPI_user_location_s *add_ue_location;
OpenAPI_list_t *secondary_rat_usage_report;
OpenAPI_list_t *secondary_rat_usage_info;
struct OpenAPI_n4_information_s *n4_info;
struct OpenAPI_n4_information_s *n4_info_ext1;
struct OpenAPI_n4_information_s *n4_info_ext2;
} OpenAPI_release_data_t;
OpenAPI_release_data_t *OpenAPI_release_data_create(
@ -42,7 +46,10 @@ OpenAPI_release_data_t *OpenAPI_release_data_create(
char *ue_time_zone,
OpenAPI_user_location_t *add_ue_location,
OpenAPI_list_t *secondary_rat_usage_report,
OpenAPI_list_t *secondary_rat_usage_info
OpenAPI_list_t *secondary_rat_usage_info,
OpenAPI_n4_information_t *n4_info,
OpenAPI_n4_information_t *n4_info_ext1,
OpenAPI_n4_information_t *n4_info_ext2
);
void OpenAPI_release_data_free(OpenAPI_release_data_t *release_data);
OpenAPI_release_data_t *OpenAPI_release_data_parseFromJSON(cJSON *release_dataJSON);