[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 @@
/*
* authentication_info.h
*
*
* Contains the UE id (i.e. SUCI or SUPI) and the Serving Network Name.
*/
#ifndef _OpenAPI_authentication_info_H_
@ -32,6 +32,12 @@ typedef struct OpenAPI_authentication_info_s {
bool is_n5gc_ind;
int n5gc_ind;
char *supported_features;
bool is_nswo_ind;
int nswo_ind;
bool is_disaster_roaming_ind;
int disaster_roaming_ind;
bool is_onboarding_ind;
int onboarding_ind;
} OpenAPI_authentication_info_t;
OpenAPI_authentication_info_t *OpenAPI_authentication_info_create(
@ -45,7 +51,13 @@ OpenAPI_authentication_info_t *OpenAPI_authentication_info_create(
OpenAPI_list_t *cell_cag_info,
bool is_n5gc_ind,
int n5gc_ind,
char *supported_features
char *supported_features,
bool is_nswo_ind,
int nswo_ind,
bool is_disaster_roaming_ind,
int disaster_roaming_ind,
bool is_onboarding_ind,
int onboarding_ind
);
void OpenAPI_authentication_info_free(OpenAPI_authentication_info_t *authentication_info);
OpenAPI_authentication_info_t *OpenAPI_authentication_info_parseFromJSON(cJSON *authentication_infoJSON);