mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +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
55
lib/sbi/openapi/model/hsmf_updated_data.h
Normal file
55
lib/sbi/openapi/model/hsmf_updated_data.h
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
* hsmf_updated_data.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_hsmf_updated_data_H_
|
||||
#define _OpenAPI_hsmf_updated_data_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "n4_information.h"
|
||||
#include "ref_to_binary_data.h"
|
||||
#include "roaming_charging_profile.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_hsmf_updated_data_s OpenAPI_hsmf_updated_data_t;
|
||||
typedef struct OpenAPI_hsmf_updated_data_s {
|
||||
struct OpenAPI_ref_to_binary_data_s *n1_sm_info_to_ue;
|
||||
struct OpenAPI_n4_information_s *n4_info;
|
||||
struct OpenAPI_n4_information_s *n4_info_ext1;
|
||||
struct OpenAPI_n4_information_s *n4_info_ext2;
|
||||
OpenAPI_list_t *dnai_list;
|
||||
char *supported_features;
|
||||
struct OpenAPI_roaming_charging_profile_s *roaming_charging_profile;
|
||||
int ipv6_multi_homing_ind;
|
||||
} OpenAPI_hsmf_updated_data_t;
|
||||
|
||||
OpenAPI_hsmf_updated_data_t *OpenAPI_hsmf_updated_data_create(
|
||||
OpenAPI_ref_to_binary_data_t *n1_sm_info_to_ue,
|
||||
OpenAPI_n4_information_t *n4_info,
|
||||
OpenAPI_n4_information_t *n4_info_ext1,
|
||||
OpenAPI_n4_information_t *n4_info_ext2,
|
||||
OpenAPI_list_t *dnai_list,
|
||||
char *supported_features,
|
||||
OpenAPI_roaming_charging_profile_t *roaming_charging_profile,
|
||||
int ipv6_multi_homing_ind
|
||||
);
|
||||
void OpenAPI_hsmf_updated_data_free(OpenAPI_hsmf_updated_data_t *hsmf_updated_data);
|
||||
OpenAPI_hsmf_updated_data_t *OpenAPI_hsmf_updated_data_parseFromJSON(cJSON *hsmf_updated_dataJSON);
|
||||
cJSON *OpenAPI_hsmf_updated_data_convertToJSON(OpenAPI_hsmf_updated_data_t *hsmf_updated_data);
|
||||
OpenAPI_hsmf_updated_data_t *OpenAPI_hsmf_updated_data_copy(OpenAPI_hsmf_updated_data_t *dst, OpenAPI_hsmf_updated_data_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_hsmf_updated_data_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue