[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

@ -13,7 +13,7 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "bdt_policy_status.h"
#include "network_area_info_1.h"
#include "network_area_info_2.h"
#include "snssai.h"
#include "transfer_policy.h"
#include "usage_threshold.h"
@ -27,7 +27,7 @@ typedef struct OpenAPI_bdt_data_s {
char *asp_id;
struct OpenAPI_transfer_policy_s *trans_policy;
char *bdt_ref_id;
struct OpenAPI_network_area_info_1_s *nw_area_info;
struct OpenAPI_network_area_info_2_s *nw_area_info;
bool is_num_of_ues;
int num_of_ues;
struct OpenAPI_usage_threshold_s *vol_per_ue;
@ -36,13 +36,14 @@ typedef struct OpenAPI_bdt_data_s {
char *traffic_des;
struct OpenAPI_bdt_policy_status_s *bdtp_status;
char *supp_feat;
OpenAPI_list_t *reset_ids;
} OpenAPI_bdt_data_t;
OpenAPI_bdt_data_t *OpenAPI_bdt_data_create(
char *asp_id,
OpenAPI_transfer_policy_t *trans_policy,
char *bdt_ref_id,
OpenAPI_network_area_info_1_t *nw_area_info,
OpenAPI_network_area_info_2_t *nw_area_info,
bool is_num_of_ues,
int num_of_ues,
OpenAPI_usage_threshold_t *vol_per_ue,
@ -50,7 +51,8 @@ OpenAPI_bdt_data_t *OpenAPI_bdt_data_create(
OpenAPI_snssai_t *snssai,
char *traffic_des,
OpenAPI_bdt_policy_status_t *bdtp_status,
char *supp_feat
char *supp_feat,
OpenAPI_list_t *reset_ids
);
void OpenAPI_bdt_data_free(OpenAPI_bdt_data_t *bdt_data);
OpenAPI_bdt_data_t *OpenAPI_bdt_data_parseFromJSON(cJSON *bdt_dataJSON);