mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
parent
20008b6a13
commit
dbee687a75
1415 changed files with 86635 additions and 5877 deletions
75
lib/sbi/openapi/model/registration_context_container.h
Normal file
75
lib/sbi/openapi/model/registration_context_container.h
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
/*
|
||||
* registration_context_container.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_registration_context_container_H_
|
||||
#define _OpenAPI_registration_context_container_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_type.h"
|
||||
#include "allowed_nssai.h"
|
||||
#include "configured_snssai.h"
|
||||
#include "global_ran_node_id.h"
|
||||
#include "snssai.h"
|
||||
#include "ue_context.h"
|
||||
#include "user_location.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_registration_context_container_s OpenAPI_registration_context_container_t;
|
||||
typedef struct OpenAPI_registration_context_container_s {
|
||||
struct OpenAPI_ue_context_s *ue_context;
|
||||
char *local_time_zone;
|
||||
OpenAPI_access_type_e an_type;
|
||||
int an_n2_ap_id;
|
||||
struct OpenAPI_global_ran_node_id_s *ran_node_id;
|
||||
char *initial_amf_name;
|
||||
struct OpenAPI_user_location_s *user_location;
|
||||
char *rrc_est_cause;
|
||||
int ue_context_request;
|
||||
int initial_amf_n2_ap_id;
|
||||
char *an_n2_i_pv4_addr;
|
||||
char *an_n2_i_pv6_addr;
|
||||
struct OpenAPI_allowed_nssai_s *allowed_nssai;
|
||||
OpenAPI_list_t *configured_nssai;
|
||||
OpenAPI_list_t *rejected_nssai_in_plmn;
|
||||
OpenAPI_list_t *rejected_nssai_in_ta;
|
||||
} OpenAPI_registration_context_container_t;
|
||||
|
||||
OpenAPI_registration_context_container_t *OpenAPI_registration_context_container_create(
|
||||
OpenAPI_ue_context_t *ue_context,
|
||||
char *local_time_zone,
|
||||
OpenAPI_access_type_e an_type,
|
||||
int an_n2_ap_id,
|
||||
OpenAPI_global_ran_node_id_t *ran_node_id,
|
||||
char *initial_amf_name,
|
||||
OpenAPI_user_location_t *user_location,
|
||||
char *rrc_est_cause,
|
||||
int ue_context_request,
|
||||
int initial_amf_n2_ap_id,
|
||||
char *an_n2_i_pv4_addr,
|
||||
char *an_n2_i_pv6_addr,
|
||||
OpenAPI_allowed_nssai_t *allowed_nssai,
|
||||
OpenAPI_list_t *configured_nssai,
|
||||
OpenAPI_list_t *rejected_nssai_in_plmn,
|
||||
OpenAPI_list_t *rejected_nssai_in_ta
|
||||
);
|
||||
void OpenAPI_registration_context_container_free(OpenAPI_registration_context_container_t *registration_context_container);
|
||||
OpenAPI_registration_context_container_t *OpenAPI_registration_context_container_parseFromJSON(cJSON *registration_context_containerJSON);
|
||||
cJSON *OpenAPI_registration_context_container_convertToJSON(OpenAPI_registration_context_container_t *registration_context_container);
|
||||
OpenAPI_registration_context_container_t *OpenAPI_registration_context_container_copy(OpenAPI_registration_context_container_t *dst, OpenAPI_registration_context_container_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_registration_context_container_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue