mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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
42
lib/sbi/openapi/model/eps_bearer_info.h
Normal file
42
lib/sbi/openapi/model/eps_bearer_info.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* eps_bearer_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_eps_bearer_info_H_
|
||||
#define _OpenAPI_eps_bearer_info_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_eps_bearer_info_s OpenAPI_eps_bearer_info_t;
|
||||
typedef struct OpenAPI_eps_bearer_info_s {
|
||||
int ebi;
|
||||
char pgw_s8u_fteid;
|
||||
char bearer_level_qo_s;
|
||||
} OpenAPI_eps_bearer_info_t;
|
||||
|
||||
OpenAPI_eps_bearer_info_t *OpenAPI_eps_bearer_info_create(
|
||||
int ebi,
|
||||
char pgw_s8u_fteid,
|
||||
char bearer_level_qo_s
|
||||
);
|
||||
void OpenAPI_eps_bearer_info_free(OpenAPI_eps_bearer_info_t *eps_bearer_info);
|
||||
OpenAPI_eps_bearer_info_t *OpenAPI_eps_bearer_info_parseFromJSON(cJSON *eps_bearer_infoJSON);
|
||||
cJSON *OpenAPI_eps_bearer_info_convertToJSON(OpenAPI_eps_bearer_info_t *eps_bearer_info);
|
||||
OpenAPI_eps_bearer_info_t *OpenAPI_eps_bearer_info_copy(OpenAPI_eps_bearer_info_t *dst, OpenAPI_eps_bearer_info_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_eps_bearer_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue