mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
[5GC] Added BSF(Binding Support Function)
This commit is contained in:
parent
611986794b
commit
fe89f7cd11
293 changed files with 24988 additions and 1507 deletions
42
lib/sbi/openapi/model/tsn_qos_container.h
Normal file
42
lib/sbi/openapi/model/tsn_qos_container.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* tsn_qos_container.h
|
||||
*
|
||||
* Indicates TSC Traffic QoS.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_tsn_qos_container_H_
|
||||
#define _OpenAPI_tsn_qos_container_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_tsn_qos_container_s OpenAPI_tsn_qos_container_t;
|
||||
typedef struct OpenAPI_tsn_qos_container_s {
|
||||
int max_tsc_burst_size;
|
||||
int tsc_pack_delay;
|
||||
int tsc_prio_level;
|
||||
} OpenAPI_tsn_qos_container_t;
|
||||
|
||||
OpenAPI_tsn_qos_container_t *OpenAPI_tsn_qos_container_create(
|
||||
int max_tsc_burst_size,
|
||||
int tsc_pack_delay,
|
||||
int tsc_prio_level
|
||||
);
|
||||
void OpenAPI_tsn_qos_container_free(OpenAPI_tsn_qos_container_t *tsn_qos_container);
|
||||
OpenAPI_tsn_qos_container_t *OpenAPI_tsn_qos_container_parseFromJSON(cJSON *tsn_qos_containerJSON);
|
||||
cJSON *OpenAPI_tsn_qos_container_convertToJSON(OpenAPI_tsn_qos_container_t *tsn_qos_container);
|
||||
OpenAPI_tsn_qos_container_t *OpenAPI_tsn_qos_container_copy(OpenAPI_tsn_qos_container_t *dst, OpenAPI_tsn_qos_container_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_tsn_qos_container_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue