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

@ -1,7 +1,7 @@
/*
* udsf_info.h
*
*
* Information related to UDSF
*/
#ifndef _OpenAPI_udsf_info_H_
@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "identity_range.h"
#include "supi_range.h"
#ifdef __cplusplus
@ -22,11 +23,13 @@ typedef struct OpenAPI_udsf_info_s OpenAPI_udsf_info_t;
typedef struct OpenAPI_udsf_info_s {
char *group_id;
OpenAPI_list_t *supi_ranges;
OpenAPI_list_t* storage_id_ranges;
} OpenAPI_udsf_info_t;
OpenAPI_udsf_info_t *OpenAPI_udsf_info_create(
char *group_id,
OpenAPI_list_t *supi_ranges
OpenAPI_list_t *supi_ranges,
OpenAPI_list_t* storage_id_ranges
);
void OpenAPI_udsf_info_free(OpenAPI_udsf_info_t *udsf_info);
OpenAPI_udsf_info_t *OpenAPI_udsf_info_parseFromJSON(cJSON *udsf_infoJSON);