[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 @@
/*
* n4_information.h
*
*
* N4 Information
*/
#ifndef _OpenAPI_n4_information_H_
@ -25,12 +25,18 @@ typedef struct OpenAPI_n4_information_s {
OpenAPI_n4_message_type_e n4_message_type;
struct OpenAPI_ref_to_binary_data_s *n4_message_payload;
struct OpenAPI_dnai_information_s *n4_dnai_info;
char *psa_upf_id;
char *ul_cl_bp_id;
OpenAPI_list_t *n9_ul_pdr_id_list;
} OpenAPI_n4_information_t;
OpenAPI_n4_information_t *OpenAPI_n4_information_create(
OpenAPI_n4_message_type_e n4_message_type,
OpenAPI_ref_to_binary_data_t *n4_message_payload,
OpenAPI_dnai_information_t *n4_dnai_info
OpenAPI_dnai_information_t *n4_dnai_info,
char *psa_upf_id,
char *ul_cl_bp_id,
OpenAPI_list_t *n9_ul_pdr_id_list
);
void OpenAPI_n4_information_free(OpenAPI_n4_information_t *n4_information);
OpenAPI_n4_information_t *OpenAPI_n4_information_parseFromJSON(cJSON *n4_informationJSON);