Add only one 5GC scenario (call-flow)

This commit is contained in:
Sukchan Lee 2020-06-17 01:22:28 -04:00
parent 20008b6a13
commit dbee687a75
1415 changed files with 86635 additions and 5877 deletions

View 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_ */