mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* traffic_influ_data.h
|
||||
*
|
||||
*
|
||||
* Represents the Traffic Influence Data.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_traffic_influ_data_H_
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
#include "dnai_change_type.h"
|
||||
#include "eth_flow_description.h"
|
||||
#include "flow_info.h"
|
||||
#include "network_area_info_1.h"
|
||||
#include "network_area_info_2.h"
|
||||
#include "route_to_location.h"
|
||||
#include "snssai.h"
|
||||
#include "subscribed_event.h"
|
||||
|
|
@ -43,7 +43,7 @@ typedef struct OpenAPI_traffic_influ_data_s {
|
|||
char *valid_start_time;
|
||||
char *valid_end_time;
|
||||
OpenAPI_list_t *temp_validities;
|
||||
struct OpenAPI_network_area_info_1_s *nw_area_info;
|
||||
struct OpenAPI_network_area_info_2_s *nw_area_info;
|
||||
char *up_path_chg_notif_uri;
|
||||
OpenAPI_list_t *headers;
|
||||
OpenAPI_list_t *subscribed_events;
|
||||
|
|
@ -52,8 +52,15 @@ typedef struct OpenAPI_traffic_influ_data_s {
|
|||
int af_ack_ind;
|
||||
bool is_addr_preser_ind;
|
||||
int addr_preser_ind;
|
||||
bool is_max_allowed_up_lat;
|
||||
int max_allowed_up_lat;
|
||||
bool is_sim_conn_ind;
|
||||
int sim_conn_ind;
|
||||
bool is_sim_conn_term;
|
||||
int sim_conn_term;
|
||||
char *supported_features;
|
||||
char *res_uri;
|
||||
OpenAPI_list_t *reset_ids;
|
||||
} OpenAPI_traffic_influ_data_t;
|
||||
|
||||
OpenAPI_traffic_influ_data_t *OpenAPI_traffic_influ_data_create(
|
||||
|
|
@ -73,7 +80,7 @@ OpenAPI_traffic_influ_data_t *OpenAPI_traffic_influ_data_create(
|
|||
char *valid_start_time,
|
||||
char *valid_end_time,
|
||||
OpenAPI_list_t *temp_validities,
|
||||
OpenAPI_network_area_info_1_t *nw_area_info,
|
||||
OpenAPI_network_area_info_2_t *nw_area_info,
|
||||
char *up_path_chg_notif_uri,
|
||||
OpenAPI_list_t *headers,
|
||||
OpenAPI_list_t *subscribed_events,
|
||||
|
|
@ -82,8 +89,15 @@ OpenAPI_traffic_influ_data_t *OpenAPI_traffic_influ_data_create(
|
|||
int af_ack_ind,
|
||||
bool is_addr_preser_ind,
|
||||
int addr_preser_ind,
|
||||
bool is_max_allowed_up_lat,
|
||||
int max_allowed_up_lat,
|
||||
bool is_sim_conn_ind,
|
||||
int sim_conn_ind,
|
||||
bool is_sim_conn_term,
|
||||
int sim_conn_term,
|
||||
char *supported_features,
|
||||
char *res_uri
|
||||
char *res_uri,
|
||||
OpenAPI_list_t *reset_ids
|
||||
);
|
||||
void OpenAPI_traffic_influ_data_free(OpenAPI_traffic_influ_data_t *traffic_influ_data);
|
||||
OpenAPI_traffic_influ_data_t *OpenAPI_traffic_influ_data_parseFromJSON(cJSON *traffic_influ_dataJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue