[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

@ -33,6 +33,11 @@ typedef struct OpenAPI_ee_subscription_s {
char *scef_diam_host;
char *scef_diam_realm;
char *notify_correlation_id;
char *second_callback_ref;
char *gpsi;
OpenAPI_list_t *exclude_gpsi_list;
OpenAPI_list_t *include_gpsi_list;
char *data_restoration_callback_uri;
} OpenAPI_ee_subscription_t;
OpenAPI_ee_subscription_t *OpenAPI_ee_subscription_create(
@ -46,7 +51,12 @@ OpenAPI_ee_subscription_t *OpenAPI_ee_subscription_create(
int epc_applied_ind,
char *scef_diam_host,
char *scef_diam_realm,
char *notify_correlation_id
char *notify_correlation_id,
char *second_callback_ref,
char *gpsi,
OpenAPI_list_t *exclude_gpsi_list,
OpenAPI_list_t *include_gpsi_list,
char *data_restoration_callback_uri
);
void OpenAPI_ee_subscription_free(OpenAPI_ee_subscription_t *ee_subscription);
OpenAPI_ee_subscription_t *OpenAPI_ee_subscription_parseFromJSON(cJSON *ee_subscriptionJSON);