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
52
lib/sbi/openapi/model/vplmn_qos.h
Normal file
52
lib/sbi/openapi/model/vplmn_qos.h
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
* vplmn_qos.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_vplmn_qos_H_
|
||||
#define _OpenAPI_vplmn_qos_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "ambr.h"
|
||||
#include "arp.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_vplmn_qos_s OpenAPI_vplmn_qos_t;
|
||||
typedef struct OpenAPI_vplmn_qos_s {
|
||||
int _5qi;
|
||||
struct OpenAPI_arp_s *arp;
|
||||
struct OpenAPI_ambr_s *session_ambr;
|
||||
char *max_fbr_dl;
|
||||
char *max_fbr_ul;
|
||||
char *gua_fbr_dl;
|
||||
char *gua_fbr_ul;
|
||||
} OpenAPI_vplmn_qos_t;
|
||||
|
||||
OpenAPI_vplmn_qos_t *OpenAPI_vplmn_qos_create(
|
||||
int _5qi,
|
||||
OpenAPI_arp_t *arp,
|
||||
OpenAPI_ambr_t *session_ambr,
|
||||
char *max_fbr_dl,
|
||||
char *max_fbr_ul,
|
||||
char *gua_fbr_dl,
|
||||
char *gua_fbr_ul
|
||||
);
|
||||
void OpenAPI_vplmn_qos_free(OpenAPI_vplmn_qos_t *vplmn_qos);
|
||||
OpenAPI_vplmn_qos_t *OpenAPI_vplmn_qos_parseFromJSON(cJSON *vplmn_qosJSON);
|
||||
cJSON *OpenAPI_vplmn_qos_convertToJSON(OpenAPI_vplmn_qos_t *vplmn_qos);
|
||||
OpenAPI_vplmn_qos_t *OpenAPI_vplmn_qos_copy(OpenAPI_vplmn_qos_t *dst, OpenAPI_vplmn_qos_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_vplmn_qos_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue