mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
parent
20008b6a13
commit
dbee687a75
1415 changed files with 86635 additions and 5877 deletions
56
lib/sbi/openapi/model/qos_flow_profile.h
Normal file
56
lib/sbi/openapi/model/qos_flow_profile.h
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
/*
|
||||
* qos_flow_profile.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_qos_flow_profile_H_
|
||||
#define _OpenAPI_qos_flow_profile_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "additional_qos_flow_info.h"
|
||||
#include "arp.h"
|
||||
#include "dynamic5_qi.h"
|
||||
#include "gbr_qos_flow_information.h"
|
||||
#include "non_dynamic5_qi.h"
|
||||
#include "reflective_qo_s_attribute.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_qos_flow_profile_s OpenAPI_qos_flow_profile_t;
|
||||
typedef struct OpenAPI_qos_flow_profile_s {
|
||||
int _5qi;
|
||||
struct OpenAPI_non_dynamic5_qi_s *non_dynamic5_qi;
|
||||
struct OpenAPI_dynamic5_qi_s *dynamic5_qi;
|
||||
struct OpenAPI_arp_s *arp;
|
||||
struct OpenAPI_gbr_qos_flow_information_s *gbr_qos_flow_info;
|
||||
struct OpenAPI_reflective_qo_s_attribute_s *rqa;
|
||||
struct OpenAPI_additional_qos_flow_info_s *additional_qos_flow_info;
|
||||
} OpenAPI_qos_flow_profile_t;
|
||||
|
||||
OpenAPI_qos_flow_profile_t *OpenAPI_qos_flow_profile_create(
|
||||
int _5qi,
|
||||
OpenAPI_non_dynamic5_qi_t *non_dynamic5_qi,
|
||||
OpenAPI_dynamic5_qi_t *dynamic5_qi,
|
||||
OpenAPI_arp_t *arp,
|
||||
OpenAPI_gbr_qos_flow_information_t *gbr_qos_flow_info,
|
||||
OpenAPI_reflective_qo_s_attribute_t *rqa,
|
||||
OpenAPI_additional_qos_flow_info_t *additional_qos_flow_info
|
||||
);
|
||||
void OpenAPI_qos_flow_profile_free(OpenAPI_qos_flow_profile_t *qos_flow_profile);
|
||||
OpenAPI_qos_flow_profile_t *OpenAPI_qos_flow_profile_parseFromJSON(cJSON *qos_flow_profileJSON);
|
||||
cJSON *OpenAPI_qos_flow_profile_convertToJSON(OpenAPI_qos_flow_profile_t *qos_flow_profile);
|
||||
OpenAPI_qos_flow_profile_t *OpenAPI_qos_flow_profile_copy(OpenAPI_qos_flow_profile_t *dst, OpenAPI_qos_flow_profile_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_qos_flow_profile_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue