mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +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
|
|
@ -14,6 +14,7 @@
|
|||
#include "../include/binary.h"
|
||||
#include "auth_type.h"
|
||||
#include "authentication_vector.h"
|
||||
#include "server_addressing_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -25,13 +26,25 @@ typedef struct OpenAPI_authentication_info_result_s {
|
|||
char *supported_features;
|
||||
struct OpenAPI_authentication_vector_s *authentication_vector;
|
||||
char *supi;
|
||||
bool is_akma_ind;
|
||||
int akma_ind;
|
||||
bool is_auth_aaa;
|
||||
int auth_aaa;
|
||||
char *routing_id;
|
||||
OpenAPI_list_t *pvs_info;
|
||||
} OpenAPI_authentication_info_result_t;
|
||||
|
||||
OpenAPI_authentication_info_result_t *OpenAPI_authentication_info_result_create(
|
||||
OpenAPI_auth_type_e auth_type,
|
||||
char *supported_features,
|
||||
OpenAPI_authentication_vector_t *authentication_vector,
|
||||
char *supi
|
||||
char *supi,
|
||||
bool is_akma_ind,
|
||||
int akma_ind,
|
||||
bool is_auth_aaa,
|
||||
int auth_aaa,
|
||||
char *routing_id,
|
||||
OpenAPI_list_t *pvs_info
|
||||
);
|
||||
void OpenAPI_authentication_info_result_free(OpenAPI_authentication_info_result_t *authentication_info_result);
|
||||
OpenAPI_authentication_info_result_t *OpenAPI_authentication_info_result_parseFromJSON(cJSON *authentication_info_resultJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue