[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 @@
/*
* sm_context_updated_data.h
*
*
* Data within Update SM Context Response
*/
#ifndef _OpenAPI_sm_context_updated_data_H_
@ -12,12 +12,14 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "anchor_smf_features.h"
#include "cause.h"
#include "ebi_arp_mapping.h"
#include "ho_state.h"
#include "indirect_data_forwarding_tunnel_info.h"
#include "n2_sm_info_type.h"
#include "ref_to_binary_data.h"
#include "tunnel_info.h"
#include "up_cnx_state.h"
#ifdef __cplusplus
@ -39,6 +41,7 @@ typedef struct OpenAPI_sm_context_updated_data_s {
int data_forwarding;
OpenAPI_list_t *n3_dl_forwarding_tnl_list;
OpenAPI_list_t *n3_ul_forwarding_tnl_list;
struct OpenAPI_tunnel_info_s *n9_ul_forwarding_tunnel;
OpenAPI_cause_e cause;
bool is_ma_accepted_ind;
int ma_accepted_ind;
@ -47,6 +50,8 @@ typedef struct OpenAPI_sm_context_updated_data_s {
OpenAPI_list_t *forwarding_bearer_contexts;
char *selected_smf_id;
char *selected_old_smf_id;
char *inter_plmn_api_root;
struct OpenAPI_anchor_smf_features_s *anchor_smf_features;
} OpenAPI_sm_context_updated_data_t;
OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_create(
@ -63,6 +68,7 @@ OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_create(
int data_forwarding,
OpenAPI_list_t *n3_dl_forwarding_tnl_list,
OpenAPI_list_t *n3_ul_forwarding_tnl_list,
OpenAPI_tunnel_info_t *n9_ul_forwarding_tunnel,
OpenAPI_cause_e cause,
bool is_ma_accepted_ind,
int ma_accepted_ind,
@ -70,7 +76,9 @@ OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_create(
char *forwarding_f_teid,
OpenAPI_list_t *forwarding_bearer_contexts,
char *selected_smf_id,
char *selected_old_smf_id
char *selected_old_smf_id,
char *inter_plmn_api_root,
OpenAPI_anchor_smf_features_t *anchor_smf_features
);
void OpenAPI_sm_context_updated_data_free(OpenAPI_sm_context_updated_data_t *sm_context_updated_data);
OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_parseFromJSON(cJSON *sm_context_updated_dataJSON);