mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +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
|
|
@ -13,6 +13,7 @@
|
|||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "apn_rate_status.h"
|
||||
#include "n4_information.h"
|
||||
#include "small_data_rate_status.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -23,11 +24,17 @@ typedef struct OpenAPI_released_data_s OpenAPI_released_data_t;
|
|||
typedef struct OpenAPI_released_data_s {
|
||||
struct OpenAPI_small_data_rate_status_s *small_data_rate_status;
|
||||
struct OpenAPI_apn_rate_status_s *apn_rate_status;
|
||||
struct OpenAPI_n4_information_s *n4_info;
|
||||
struct OpenAPI_n4_information_s *n4_info_ext1;
|
||||
struct OpenAPI_n4_information_s *n4_info_ext2;
|
||||
} OpenAPI_released_data_t;
|
||||
|
||||
OpenAPI_released_data_t *OpenAPI_released_data_create(
|
||||
OpenAPI_small_data_rate_status_t *small_data_rate_status,
|
||||
OpenAPI_apn_rate_status_t *apn_rate_status
|
||||
OpenAPI_apn_rate_status_t *apn_rate_status,
|
||||
OpenAPI_n4_information_t *n4_info,
|
||||
OpenAPI_n4_information_t *n4_info_ext1,
|
||||
OpenAPI_n4_information_t *n4_info_ext2
|
||||
);
|
||||
void OpenAPI_released_data_free(OpenAPI_released_data_t *released_data);
|
||||
OpenAPI_released_data_t *OpenAPI_released_data_parseFromJSON(cJSON *released_dataJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue