Add only one 5GC scenario (call-flow)

This commit is contained in:
Sukchan Lee 2020-06-17 01:22:28 -04:00
parent 20008b6a13
commit dbee687a75
1415 changed files with 86635 additions and 5877 deletions

View 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_ */