[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -17,7 +17,9 @@
#include "notification_item.h"
#include "operator_specific_data_container.h"
#include "plmn_id_1.h"
#include "slice_policy_data.h"
#include "sm_policy_data.h"
#include "snssai.h"
#include "sponsor_connectivity_data.h"
#include "ue_policy_set.h"
#include "usage_mon_data.h"
@ -45,6 +47,8 @@ typedef struct OpenAPI_policy_data_change_notification_s {
OpenAPI_list_t *del_resources;
char *notif_id;
OpenAPI_list_t *reported_fragments;
struct OpenAPI_slice_policy_data_s *slice_policy_data;
struct OpenAPI_snssai_s *snssai;
} OpenAPI_policy_data_change_notification_t;
OpenAPI_policy_data_change_notification_t *OpenAPI_policy_data_change_notification_create(
@ -64,7 +68,9 @@ OpenAPI_policy_data_change_notification_t *OpenAPI_policy_data_change_notificati
OpenAPI_plmn_id_1_t *plmn_id,
OpenAPI_list_t *del_resources,
char *notif_id,
OpenAPI_list_t *reported_fragments
OpenAPI_list_t *reported_fragments,
OpenAPI_slice_policy_data_t *slice_policy_data,
OpenAPI_snssai_t *snssai
);
void OpenAPI_policy_data_change_notification_free(OpenAPI_policy_data_change_notification_t *policy_data_change_notification);
OpenAPI_policy_data_change_notification_t *OpenAPI_policy_data_change_notification_parseFromJSON(cJSON *policy_data_change_notificationJSON);