mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30: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
77
lib/sbi/openapi/model/sm_context_updated_data.h
Normal file
77
lib/sbi/openapi/model/sm_context_updated_data.h
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
/*
|
||||
* sm_context_updated_data.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_sm_context_updated_data_H_
|
||||
#define _OpenAPI_sm_context_updated_data_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "cause.h"
|
||||
#include "ebi_arp_mapping.h"
|
||||
#include "ho_state.h"
|
||||
#include "indirect_data_forwarding_tunnel_info.h"
|
||||
#include "n2_sm_info_type.h"
|
||||
#include "ref_to_binary_data.h"
|
||||
#include "up_cnx_state.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_sm_context_updated_data_s OpenAPI_sm_context_updated_data_t;
|
||||
typedef struct OpenAPI_sm_context_updated_data_s {
|
||||
struct OpenAPI_up_cnx_state_s *up_cnx_state;
|
||||
struct OpenAPI_ho_state_s *ho_state;
|
||||
OpenAPI_list_t *release_ebi_list;
|
||||
OpenAPI_list_t *allocated_ebi_list;
|
||||
OpenAPI_list_t *modified_ebi_list;
|
||||
struct OpenAPI_ref_to_binary_data_s *n1_sm_msg;
|
||||
struct OpenAPI_ref_to_binary_data_s *n2_sm_info;
|
||||
OpenAPI_n2_sm_info_type_e n2_sm_info_type;
|
||||
OpenAPI_list_t *eps_bearer_setup;
|
||||
int data_forwarding;
|
||||
OpenAPI_list_t *n3_dl_forwarding_tnl_list;
|
||||
OpenAPI_list_t *n3_ul_forwarding_tnl_list;
|
||||
struct OpenAPI_cause_s *cause;
|
||||
int ma_accepted_ind;
|
||||
char *supported_features;
|
||||
char forwarding_f_teid;
|
||||
OpenAPI_list_t *forwarding_bearer_contexts;
|
||||
} OpenAPI_sm_context_updated_data_t;
|
||||
|
||||
OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_create(
|
||||
OpenAPI_up_cnx_state_t *up_cnx_state,
|
||||
OpenAPI_ho_state_t *ho_state,
|
||||
OpenAPI_list_t *release_ebi_list,
|
||||
OpenAPI_list_t *allocated_ebi_list,
|
||||
OpenAPI_list_t *modified_ebi_list,
|
||||
OpenAPI_ref_to_binary_data_t *n1_sm_msg,
|
||||
OpenAPI_ref_to_binary_data_t *n2_sm_info,
|
||||
OpenAPI_n2_sm_info_type_e n2_sm_info_type,
|
||||
OpenAPI_list_t *eps_bearer_setup,
|
||||
int data_forwarding,
|
||||
OpenAPI_list_t *n3_dl_forwarding_tnl_list,
|
||||
OpenAPI_list_t *n3_ul_forwarding_tnl_list,
|
||||
OpenAPI_cause_t *cause,
|
||||
int ma_accepted_ind,
|
||||
char *supported_features,
|
||||
char forwarding_f_teid,
|
||||
OpenAPI_list_t *forwarding_bearer_contexts
|
||||
);
|
||||
void OpenAPI_sm_context_updated_data_free(OpenAPI_sm_context_updated_data_t *sm_context_updated_data);
|
||||
OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_parseFromJSON(cJSON *sm_context_updated_dataJSON);
|
||||
cJSON *OpenAPI_sm_context_updated_data_convertToJSON(OpenAPI_sm_context_updated_data_t *sm_context_updated_data);
|
||||
OpenAPI_sm_context_updated_data_t *OpenAPI_sm_context_updated_data_copy(OpenAPI_sm_context_updated_data_t *dst, OpenAPI_sm_context_updated_data_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_sm_context_updated_data_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue