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
45
lib/sbi/openapi/model/n4_information.h
Normal file
45
lib/sbi/openapi/model/n4_information.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* n4_information.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_n4_information_H_
|
||||
#define _OpenAPI_n4_information_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "dnai_information.h"
|
||||
#include "n4_message_type.h"
|
||||
#include "ref_to_binary_data.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_n4_information_s OpenAPI_n4_information_t;
|
||||
typedef struct OpenAPI_n4_information_s {
|
||||
struct OpenAPI_n4_message_type_s *n4_message_type;
|
||||
struct OpenAPI_ref_to_binary_data_s *n4_message_payload;
|
||||
struct OpenAPI_dnai_information_s *n4_dnai_info;
|
||||
} OpenAPI_n4_information_t;
|
||||
|
||||
OpenAPI_n4_information_t *OpenAPI_n4_information_create(
|
||||
OpenAPI_n4_message_type_t *n4_message_type,
|
||||
OpenAPI_ref_to_binary_data_t *n4_message_payload,
|
||||
OpenAPI_dnai_information_t *n4_dnai_info
|
||||
);
|
||||
void OpenAPI_n4_information_free(OpenAPI_n4_information_t *n4_information);
|
||||
OpenAPI_n4_information_t *OpenAPI_n4_information_parseFromJSON(cJSON *n4_informationJSON);
|
||||
cJSON *OpenAPI_n4_information_convertToJSON(OpenAPI_n4_information_t *n4_information);
|
||||
OpenAPI_n4_information_t *OpenAPI_n4_information_copy(OpenAPI_n4_information_t *dst, OpenAPI_n4_information_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_n4_information_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue