mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue