mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30: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
|
|
@ -16,6 +16,8 @@
|
|||
#include "notif_condition.h"
|
||||
#include "notification_event_type.h"
|
||||
#include "plmn_id.h"
|
||||
#include "plmn_id_nid.h"
|
||||
#include "plmn_snssai.h"
|
||||
#include "snssai.h"
|
||||
#include "subscription_data_subscr_cond.h"
|
||||
|
||||
|
|
@ -37,7 +39,10 @@ typedef struct OpenAPI_subscription_data_s {
|
|||
OpenAPI_nf_type_e req_nf_type;
|
||||
char *req_nf_fqdn;
|
||||
OpenAPI_list_t *req_snssais;
|
||||
OpenAPI_list_t *req_per_plmn_snssais;
|
||||
OpenAPI_list_t *req_plmn_list;
|
||||
OpenAPI_list_t *req_snpn_list;
|
||||
OpenAPI_list_t *serving_scope;
|
||||
} OpenAPI_subscription_data_t;
|
||||
|
||||
OpenAPI_subscription_data_t *OpenAPI_subscription_data_create(
|
||||
|
|
@ -53,7 +58,10 @@ OpenAPI_subscription_data_t *OpenAPI_subscription_data_create(
|
|||
OpenAPI_nf_type_e req_nf_type,
|
||||
char *req_nf_fqdn,
|
||||
OpenAPI_list_t *req_snssais,
|
||||
OpenAPI_list_t *req_plmn_list
|
||||
OpenAPI_list_t *req_per_plmn_snssais,
|
||||
OpenAPI_list_t *req_plmn_list,
|
||||
OpenAPI_list_t *req_snpn_list,
|
||||
OpenAPI_list_t *serving_scope
|
||||
);
|
||||
void OpenAPI_subscription_data_free(OpenAPI_subscription_data_t *subscription_data);
|
||||
OpenAPI_subscription_data_t *OpenAPI_subscription_data_parseFromJSON(cJSON *subscription_dataJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue