mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
49
lib/sbi/openapi/model/global_ran_node_id.h
Normal file
49
lib/sbi/openapi/model/global_ran_node_id.h
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* global_ran_node_id.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_global_ran_node_id_H_
|
||||
#define _OpenAPI_global_ran_node_id_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "g_nb_id.h"
|
||||
#include "plmn_id.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_global_ran_node_id_s OpenAPI_global_ran_node_id_t;
|
||||
typedef struct OpenAPI_global_ran_node_id_s {
|
||||
struct OpenAPI_plmn_id_s *plmn_id;
|
||||
char *n3_iwf_id;
|
||||
struct OpenAPI_g_nb_id_s *g_nb_id;
|
||||
char *nge_nb_id;
|
||||
char *nid;
|
||||
char *e_nb_id;
|
||||
} OpenAPI_global_ran_node_id_t;
|
||||
|
||||
OpenAPI_global_ran_node_id_t *OpenAPI_global_ran_node_id_create(
|
||||
OpenAPI_plmn_id_t *plmn_id,
|
||||
char *n3_iwf_id,
|
||||
OpenAPI_g_nb_id_t *g_nb_id,
|
||||
char *nge_nb_id,
|
||||
char *nid,
|
||||
char *e_nb_id
|
||||
);
|
||||
void OpenAPI_global_ran_node_id_free(OpenAPI_global_ran_node_id_t *global_ran_node_id);
|
||||
OpenAPI_global_ran_node_id_t *OpenAPI_global_ran_node_id_parseFromJSON(cJSON *global_ran_node_idJSON);
|
||||
cJSON *OpenAPI_global_ran_node_id_convertToJSON(OpenAPI_global_ran_node_id_t *global_ran_node_id);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_global_ran_node_id_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue