mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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
51
lib/sbi/openapi/model/n2_info_container.h
Normal file
51
lib/sbi/openapi/model/n2_info_container.h
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
* n2_info_container.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_n2_info_container_H_
|
||||
#define _OpenAPI_n2_info_container_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "n2_information_class.h"
|
||||
#include "n2_ran_information.h"
|
||||
#include "n2_sm_information.h"
|
||||
#include "nrppa_information.h"
|
||||
#include "pws_information.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_n2_info_container_s OpenAPI_n2_info_container_t;
|
||||
typedef struct OpenAPI_n2_info_container_s {
|
||||
OpenAPI_n2_information_class_e n2_information_class;
|
||||
struct OpenAPI_n2_sm_information_s *sm_info;
|
||||
struct OpenAPI_n2_ran_information_s *ran_info;
|
||||
struct OpenAPI_nrppa_information_s *nrppa_info;
|
||||
struct OpenAPI_pws_information_s *pws_info;
|
||||
} OpenAPI_n2_info_container_t;
|
||||
|
||||
OpenAPI_n2_info_container_t *OpenAPI_n2_info_container_create(
|
||||
OpenAPI_n2_information_class_e n2_information_class,
|
||||
OpenAPI_n2_sm_information_t *sm_info,
|
||||
OpenAPI_n2_ran_information_t *ran_info,
|
||||
OpenAPI_nrppa_information_t *nrppa_info,
|
||||
OpenAPI_pws_information_t *pws_info
|
||||
);
|
||||
void OpenAPI_n2_info_container_free(OpenAPI_n2_info_container_t *n2_info_container);
|
||||
OpenAPI_n2_info_container_t *OpenAPI_n2_info_container_parseFromJSON(cJSON *n2_info_containerJSON);
|
||||
cJSON *OpenAPI_n2_info_container_convertToJSON(OpenAPI_n2_info_container_t *n2_info_container);
|
||||
OpenAPI_n2_info_container_t *OpenAPI_n2_info_container_copy(OpenAPI_n2_info_container_t *dst, OpenAPI_n2_info_container_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_n2_info_container_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue