[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_subscription.h
*
*
* A UE's authentication data.
*/
#ifndef _OpenAPI_authentication_subscription_H_
@ -31,10 +31,14 @@ typedef struct OpenAPI_authentication_subscription_s {
char *enc_topc_key;
bool is_vector_generation_in_hss;
int vector_generation_in_hss;
char *hss_group_id;
OpenAPI_auth_method_e n5gc_auth_method;
bool is_rg_authentication_ind;
int rg_authentication_ind;
char *supi;
bool is_akma_allowed;
int akma_allowed;
char *routing_id;
} OpenAPI_authentication_subscription_t;
OpenAPI_authentication_subscription_t *OpenAPI_authentication_subscription_create(
@ -48,10 +52,14 @@ OpenAPI_authentication_subscription_t *OpenAPI_authentication_subscription_creat
char *enc_topc_key,
bool is_vector_generation_in_hss,
int vector_generation_in_hss,
char *hss_group_id,
OpenAPI_auth_method_e n5gc_auth_method,
bool is_rg_authentication_ind,
int rg_authentication_ind,
char *supi
char *supi,
bool is_akma_allowed,
int akma_allowed,
char *routing_id
);
void OpenAPI_authentication_subscription_free(OpenAPI_authentication_subscription_t *authentication_subscription);
OpenAPI_authentication_subscription_t *OpenAPI_authentication_subscription_parseFromJSON(cJSON *authentication_subscriptionJSON);