mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
85
lib/sbi/openapi/model/traffic_influ_data.h
Normal file
85
lib/sbi/openapi/model/traffic_influ_data.h
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
/*
|
||||
* traffic_influ_data.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_traffic_influ_data_H_
|
||||
#define _OpenAPI_traffic_influ_data_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "dnai_change_type.h"
|
||||
#include "eth_flow_description.h"
|
||||
#include "flow_info.h"
|
||||
#include "network_area_info_2.h"
|
||||
#include "route_to_location.h"
|
||||
#include "snssai.h"
|
||||
#include "subscribed_event.h"
|
||||
#include "temporal_validity.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_traffic_influ_data_s OpenAPI_traffic_influ_data_t;
|
||||
typedef struct OpenAPI_traffic_influ_data_s {
|
||||
char *up_path_chg_notif_corre_id;
|
||||
int app_relo_ind;
|
||||
char *af_app_id;
|
||||
char *dnn;
|
||||
OpenAPI_list_t *eth_traffic_filters;
|
||||
struct OpenAPI_snssai_s *snssai;
|
||||
char *inter_group_id;
|
||||
char *supi;
|
||||
OpenAPI_list_t *traffic_filters;
|
||||
OpenAPI_list_t *traffic_routes;
|
||||
int traff_corre_ind;
|
||||
char *valid_start_time;
|
||||
char *valid_end_time;
|
||||
OpenAPI_list_t *temp_validities;
|
||||
struct OpenAPI_network_area_info_2_s *nw_area_info;
|
||||
char *up_path_chg_notif_uri;
|
||||
OpenAPI_list_t *subscribed_events;
|
||||
struct OpenAPI_dnai_change_type_s *dnai_chg_type;
|
||||
int af_ack_ind;
|
||||
int addr_preser_ind;
|
||||
char *supported_features;
|
||||
} OpenAPI_traffic_influ_data_t;
|
||||
|
||||
OpenAPI_traffic_influ_data_t *OpenAPI_traffic_influ_data_create(
|
||||
char *up_path_chg_notif_corre_id,
|
||||
int app_relo_ind,
|
||||
char *af_app_id,
|
||||
char *dnn,
|
||||
OpenAPI_list_t *eth_traffic_filters,
|
||||
OpenAPI_snssai_t *snssai,
|
||||
char *inter_group_id,
|
||||
char *supi,
|
||||
OpenAPI_list_t *traffic_filters,
|
||||
OpenAPI_list_t *traffic_routes,
|
||||
int traff_corre_ind,
|
||||
char *valid_start_time,
|
||||
char *valid_end_time,
|
||||
OpenAPI_list_t *temp_validities,
|
||||
OpenAPI_network_area_info_2_t *nw_area_info,
|
||||
char *up_path_chg_notif_uri,
|
||||
OpenAPI_list_t *subscribed_events,
|
||||
OpenAPI_dnai_change_type_t *dnai_chg_type,
|
||||
int af_ack_ind,
|
||||
int addr_preser_ind,
|
||||
char *supported_features
|
||||
);
|
||||
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);
|
||||
cJSON *OpenAPI_traffic_influ_data_convertToJSON(OpenAPI_traffic_influ_data_t *traffic_influ_data);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_traffic_influ_data_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue