[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 @@
/*
* traffic_control_data.h
*
*
* Contains parameters determining how flows associated with a PCC Rule are treated (e.g. blocked, redirected, etc).
*/
#ifndef _OpenAPI_traffic_control_data_H_
@ -12,8 +12,9 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "eas_ip_replacement_info.h"
#include "flow_status.h"
#include "multicast_access_control.h"
#include "npcf_multicast_access_control.h"
#include "redirect_information.h"
#include "route_to_location.h"
#include "steering_functionality.h"
@ -35,13 +36,20 @@ typedef struct OpenAPI_traffic_control_data_s {
char *traffic_steering_pol_id_dl;
char *traffic_steering_pol_id_ul;
OpenAPI_list_t *route_to_locs;
bool is_max_allowed_up_lat;
int max_allowed_up_lat;
OpenAPI_list_t *eas_ip_replace_infos;
bool is_traff_corre_ind;
int traff_corre_ind;
bool is_sim_conn_ind;
int sim_conn_ind;
bool is_sim_conn_term;
int sim_conn_term;
struct OpenAPI_up_path_chg_event_s *up_path_chg_event;
OpenAPI_steering_functionality_e steer_fun;
struct OpenAPI_steering_mode_s *steer_mode_dl;
struct OpenAPI_steering_mode_s *steer_mode_ul;
struct OpenAPI_multicast_access_control_s *mul_acc_ctrl;
OpenAPI_npcf_multicast_access_control_e mul_acc_ctrl;
} OpenAPI_traffic_control_data_t;
OpenAPI_traffic_control_data_t *OpenAPI_traffic_control_data_create(
@ -54,13 +62,20 @@ OpenAPI_traffic_control_data_t *OpenAPI_traffic_control_data_create(
char *traffic_steering_pol_id_dl,
char *traffic_steering_pol_id_ul,
OpenAPI_list_t *route_to_locs,
bool is_max_allowed_up_lat,
int max_allowed_up_lat,
OpenAPI_list_t *eas_ip_replace_infos,
bool is_traff_corre_ind,
int traff_corre_ind,
bool is_sim_conn_ind,
int sim_conn_ind,
bool is_sim_conn_term,
int sim_conn_term,
OpenAPI_up_path_chg_event_t *up_path_chg_event,
OpenAPI_steering_functionality_e steer_fun,
OpenAPI_steering_mode_t *steer_mode_dl,
OpenAPI_steering_mode_t *steer_mode_ul,
OpenAPI_multicast_access_control_t *mul_acc_ctrl
OpenAPI_npcf_multicast_access_control_e mul_acc_ctrl
);
void OpenAPI_traffic_control_data_free(OpenAPI_traffic_control_data_t *traffic_control_data);
OpenAPI_traffic_control_data_t *OpenAPI_traffic_control_data_parseFromJSON(cJSON *traffic_control_dataJSON);