arch: DB schema Changes (#796)

- New function : NSSF
- New feature : SMF selection
This commit is contained in:
Sukchan Lee
2021-03-08 21:25:09 +09:00
parent c6bfbed922
commit 9af4268bab
691 changed files with 40727 additions and 18985 deletions

View File

@@ -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);