mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-03 13:50:08 +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
44
lib/sbi/openapi/model/non_dynamic5_qi.h
Normal file
44
lib/sbi/openapi/model/non_dynamic5_qi.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* non_dynamic5_qi.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_non_dynamic5_qi_H_
|
||||
#define _OpenAPI_non_dynamic5_qi_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_non_dynamic5_qi_s OpenAPI_non_dynamic5_qi_t;
|
||||
typedef struct OpenAPI_non_dynamic5_qi_s {
|
||||
int priority_level;
|
||||
int aver_window;
|
||||
int max_data_burst_vol;
|
||||
int ext_max_data_burst_vol;
|
||||
} OpenAPI_non_dynamic5_qi_t;
|
||||
|
||||
OpenAPI_non_dynamic5_qi_t *OpenAPI_non_dynamic5_qi_create(
|
||||
int priority_level,
|
||||
int aver_window,
|
||||
int max_data_burst_vol,
|
||||
int ext_max_data_burst_vol
|
||||
);
|
||||
void OpenAPI_non_dynamic5_qi_free(OpenAPI_non_dynamic5_qi_t *non_dynamic5_qi);
|
||||
OpenAPI_non_dynamic5_qi_t *OpenAPI_non_dynamic5_qi_parseFromJSON(cJSON *non_dynamic5_qiJSON);
|
||||
cJSON *OpenAPI_non_dynamic5_qi_convertToJSON(OpenAPI_non_dynamic5_qi_t *non_dynamic5_qi);
|
||||
OpenAPI_non_dynamic5_qi_t *OpenAPI_non_dynamic5_qi_copy(OpenAPI_non_dynamic5_qi_t *dst, OpenAPI_non_dynamic5_qi_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_non_dynamic5_qi_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue