mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-22 07:21:16 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
@@ -12,7 +12,9 @@
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_network_id.h"
|
||||
#include "hss_auth_type.h"
|
||||
#include "node_type.h"
|
||||
#include "plmn_id.h"
|
||||
#include "resynchronization_info.h"
|
||||
|
||||
@@ -23,18 +25,22 @@ extern "C" {
|
||||
typedef struct OpenAPI_hss_authentication_info_request_s OpenAPI_hss_authentication_info_request_t;
|
||||
typedef struct OpenAPI_hss_authentication_info_request_s {
|
||||
char *supported_features;
|
||||
struct OpenAPI_hss_auth_type_s *hss_auth_type;
|
||||
OpenAPI_hss_auth_type_e hss_auth_type;
|
||||
int num_of_requested_vectors;
|
||||
OpenAPI_node_type_e requesting_node_type;
|
||||
struct OpenAPI_plmn_id_s *serving_network_id;
|
||||
struct OpenAPI_resynchronization_info_s *resynchronization_info;
|
||||
OpenAPI_access_network_id_e an_id;
|
||||
} OpenAPI_hss_authentication_info_request_t;
|
||||
|
||||
OpenAPI_hss_authentication_info_request_t *OpenAPI_hss_authentication_info_request_create(
|
||||
char *supported_features,
|
||||
OpenAPI_hss_auth_type_t *hss_auth_type,
|
||||
OpenAPI_hss_auth_type_e hss_auth_type,
|
||||
int num_of_requested_vectors,
|
||||
OpenAPI_node_type_e requesting_node_type,
|
||||
OpenAPI_plmn_id_t *serving_network_id,
|
||||
OpenAPI_resynchronization_info_t *resynchronization_info
|
||||
OpenAPI_resynchronization_info_t *resynchronization_info,
|
||||
OpenAPI_access_network_id_e an_id
|
||||
);
|
||||
void OpenAPI_hss_authentication_info_request_free(OpenAPI_hss_authentication_info_request_t *hss_authentication_info_request);
|
||||
OpenAPI_hss_authentication_info_request_t *OpenAPI_hss_authentication_info_request_parseFromJSON(cJSON *hss_authentication_info_requestJSON);
|
||||
|
||||
Reference in New Issue
Block a user