[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -1,7 +1,7 @@
/*
* error_report.h
*
*
* Contains the rule error reports.
*/
#ifndef _OpenAPI_error_report_H_
@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "invalid_param.h"
#include "policy_decision_failure_code.h"
#include "problem_details.h"
#include "rule_report.h"
@ -27,7 +28,7 @@ typedef struct OpenAPI_error_report_s {
OpenAPI_list_t *rule_reports;
OpenAPI_list_t *sess_rule_reports;
OpenAPI_list_t *pol_dec_failure_reports;
char *alt_qos_param_id;
OpenAPI_list_t *invalid_policy_decs;
} OpenAPI_error_report_t;
OpenAPI_error_report_t *OpenAPI_error_report_create(
@ -35,7 +36,7 @@ OpenAPI_error_report_t *OpenAPI_error_report_create(
OpenAPI_list_t *rule_reports,
OpenAPI_list_t *sess_rule_reports,
OpenAPI_list_t *pol_dec_failure_reports,
char *alt_qos_param_id
OpenAPI_list_t *invalid_policy_decs
);
void OpenAPI_error_report_free(OpenAPI_error_report_t *error_report);
OpenAPI_error_report_t *OpenAPI_error_report_parseFromJSON(cJSON *error_reportJSON);