mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue