[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

@ -1,7 +1,7 @@
/*
* ext_amf_event_subscription.h
*
*
* AMF event subscription extended with additional information received for the subscription
*/
#ifndef _OpenAPI_ext_amf_event_subscription_H_
@ -14,6 +14,7 @@
#include "../include/binary.h"
#include "amf_event.h"
#include "amf_event_mode.h"
#include "area_of_interest_event_state.h"
#include "nf_type.h"
#ifdef __cplusplus
@ -30,6 +31,10 @@ typedef struct OpenAPI_ext_amf_event_subscription_s {
char *subs_change_notify_correlation_id;
char *supi;
char *group_id;
OpenAPI_list_t *exclude_supi_list;
OpenAPI_list_t *exclude_gpsi_list;
OpenAPI_list_t *include_supi_list;
OpenAPI_list_t *include_gpsi_list;
char *gpsi;
char *pei;
bool is_any_ue;
@ -38,6 +43,10 @@ typedef struct OpenAPI_ext_amf_event_subscription_s {
OpenAPI_nf_type_e source_nf_type;
OpenAPI_list_t *binding_info;
OpenAPI_nf_type_e subscribing_nf_type;
bool is_event_sync_ind;
int event_sync_ind;
OpenAPI_list_t *nf_consumer_info;
OpenAPI_list_t* aoi_state_list;
} OpenAPI_ext_amf_event_subscription_t;
OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_create(
@ -49,6 +58,10 @@ OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_create(
char *subs_change_notify_correlation_id,
char *supi,
char *group_id,
OpenAPI_list_t *exclude_supi_list,
OpenAPI_list_t *exclude_gpsi_list,
OpenAPI_list_t *include_supi_list,
OpenAPI_list_t *include_gpsi_list,
char *gpsi,
char *pei,
bool is_any_ue,
@ -56,7 +69,11 @@ OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_create(
OpenAPI_amf_event_mode_t *options,
OpenAPI_nf_type_e source_nf_type,
OpenAPI_list_t *binding_info,
OpenAPI_nf_type_e subscribing_nf_type
OpenAPI_nf_type_e subscribing_nf_type,
bool is_event_sync_ind,
int event_sync_ind,
OpenAPI_list_t *nf_consumer_info,
OpenAPI_list_t* aoi_state_list
);
void OpenAPI_ext_amf_event_subscription_free(OpenAPI_ext_amf_event_subscription_t *ext_amf_event_subscription);
OpenAPI_ext_amf_event_subscription_t *OpenAPI_ext_amf_event_subscription_parseFromJSON(cJSON *ext_amf_event_subscriptionJSON);