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

@ -23,12 +23,14 @@ typedef struct OpenAPI_pgw_info_s {
char *dnn;
char *pgw_fqdn;
struct OpenAPI_plmn_id_s *plmn_id;
int epdg_ind;
} OpenAPI_pgw_info_t;
OpenAPI_pgw_info_t *OpenAPI_pgw_info_create(
char *dnn,
char *pgw_fqdn,
OpenAPI_plmn_id_t *plmn_id
OpenAPI_plmn_id_t *plmn_id,
int epdg_ind
);
void OpenAPI_pgw_info_free(OpenAPI_pgw_info_t *pgw_info);
OpenAPI_pgw_info_t *OpenAPI_pgw_info_parseFromJSON(cJSON *pgw_infoJSON);