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
42
lib/sbi/openapi/model/ng_ran_target_id.h
Normal file
42
lib/sbi/openapi/model/ng_ran_target_id.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* ng_ran_target_id.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ng_ran_target_id_H_
|
||||
#define _OpenAPI_ng_ran_target_id_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "global_ran_node_id.h"
|
||||
#include "tai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_ng_ran_target_id_s OpenAPI_ng_ran_target_id_t;
|
||||
typedef struct OpenAPI_ng_ran_target_id_s {
|
||||
struct OpenAPI_global_ran_node_id_s *ran_node_id;
|
||||
struct OpenAPI_tai_s *tai;
|
||||
} OpenAPI_ng_ran_target_id_t;
|
||||
|
||||
OpenAPI_ng_ran_target_id_t *OpenAPI_ng_ran_target_id_create(
|
||||
OpenAPI_global_ran_node_id_t *ran_node_id,
|
||||
OpenAPI_tai_t *tai
|
||||
);
|
||||
void OpenAPI_ng_ran_target_id_free(OpenAPI_ng_ran_target_id_t *ng_ran_target_id);
|
||||
OpenAPI_ng_ran_target_id_t *OpenAPI_ng_ran_target_id_parseFromJSON(cJSON *ng_ran_target_idJSON);
|
||||
cJSON *OpenAPI_ng_ran_target_id_convertToJSON(OpenAPI_ng_ran_target_id_t *ng_ran_target_id);
|
||||
OpenAPI_ng_ran_target_id_t *OpenAPI_ng_ran_target_id_copy(OpenAPI_ng_ran_target_id_t *dst, OpenAPI_ng_ran_target_id_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ng_ran_target_id_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue