/* * traffic_control_data.h * * */ #ifndef _OpenAPI_traffic_control_data_H_ #define _OpenAPI_traffic_control_data_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" #include "flow_status.h" #include "multicast_access_control.h" #include "redirect_information.h" #include "route_to_location.h" #include "steering_functionality.h" #include "steering_mode.h" #include "up_path_chg_event.h" #ifdef __cplusplus extern "C" { #endif typedef struct OpenAPI_traffic_control_data_s OpenAPI_traffic_control_data_t; typedef struct OpenAPI_traffic_control_data_s { char *tc_id; struct OpenAPI_flow_status_s *flow_status; struct OpenAPI_redirect_information_s *redirect_info; OpenAPI_list_t *add_redirect_info; int mute_notif; char *traffic_steering_pol_id_dl; char *traffic_steering_pol_id_ul; OpenAPI_list_t *route_to_locs; int traff_corre_ind; 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_traffic_control_data_t; OpenAPI_traffic_control_data_t *OpenAPI_traffic_control_data_create( char *tc_id, OpenAPI_flow_status_t *flow_status, OpenAPI_redirect_information_t *redirect_info, OpenAPI_list_t *add_redirect_info, int mute_notif, char *traffic_steering_pol_id_dl, char *traffic_steering_pol_id_ul, OpenAPI_list_t *route_to_locs, int traff_corre_ind, 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 ); 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); cJSON *OpenAPI_traffic_control_data_convertToJSON(OpenAPI_traffic_control_data_t *traffic_control_data); OpenAPI_traffic_control_data_t *OpenAPI_traffic_control_data_copy(OpenAPI_traffic_control_data_t *dst, OpenAPI_traffic_control_data_t *src); #ifdef __cplusplus } #endif #endif /* _OpenAPI_traffic_control_data_H_ */