[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_notification_control_info.h
*
*
* Indicates whether the QoS targets for a GRB flow are not guaranteed or guaranteed again
*/
#ifndef _OpenAPI_qos_notification_control_info_H_
@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "flows.h"
#include "qos_notif_type.h"
#ifdef __cplusplus
@ -20,17 +21,15 @@ extern "C" {
typedef struct OpenAPI_qos_notification_control_info_s OpenAPI_qos_notification_control_info_t;
typedef struct OpenAPI_qos_notification_control_info_s {
OpenAPI_list_t *ref_pcc_rule_ids;
struct OpenAPI_qos_notif_type_s *notif_type;
int cont_ver;
char *alt_qos_param_id;
OpenAPI_list_t *flows;
char *alt_ser_req;
} OpenAPI_qos_notification_control_info_t;
OpenAPI_qos_notification_control_info_t *OpenAPI_qos_notification_control_info_create(
OpenAPI_list_t *ref_pcc_rule_ids,
OpenAPI_qos_notif_type_t *notif_type,
int cont_ver,
char *alt_qos_param_id
OpenAPI_list_t *flows,
char *alt_ser_req
);
void OpenAPI_qos_notification_control_info_free(OpenAPI_qos_notification_control_info_t *qos_notification_control_info);
OpenAPI_qos_notification_control_info_t *OpenAPI_qos_notification_control_info_parseFromJSON(cJSON *qos_notification_control_infoJSON);