[5GC] Added BSF(Binding Support Function)

This commit is contained in:
Sukchan Lee 2021-05-29 15:56:12 +09:00
parent 611986794b
commit fe89f7cd11
293 changed files with 24988 additions and 1507 deletions

View file

@ -1,7 +1,7 @@
/*
* qos_monitoring_report.h
*
*
* QoS Monitoring reporting information
*/
#ifndef _OpenAPI_qos_monitoring_report_H_
@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "flows.h"
#ifdef __cplusplus
extern "C" {
@ -19,14 +20,14 @@ extern "C" {
typedef struct OpenAPI_qos_monitoring_report_s OpenAPI_qos_monitoring_report_t;
typedef struct OpenAPI_qos_monitoring_report_s {
OpenAPI_list_t *ref_pcc_rule_ids;
OpenAPI_list_t *flows;
OpenAPI_list_t *ul_delays;
OpenAPI_list_t *dl_delays;
OpenAPI_list_t *rt_delays;
} OpenAPI_qos_monitoring_report_t;
OpenAPI_qos_monitoring_report_t *OpenAPI_qos_monitoring_report_create(
OpenAPI_list_t *ref_pcc_rule_ids,
OpenAPI_list_t *flows,
OpenAPI_list_t *ul_delays,
OpenAPI_list_t *dl_delays,
OpenAPI_list_t *rt_delays