mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
Added NRF
This commit is contained in:
parent
46f20cc979
commit
d0673e3066
397 changed files with 85455 additions and 209 deletions
46
lib/sbi/openapi/model/interface_upf_info_item.h
Normal file
46
lib/sbi/openapi/model/interface_upf_info_item.h
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* interface_upf_info_item.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_interface_upf_info_item_H_
|
||||
#define _OpenAPI_interface_upf_info_item_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "up_interface_type.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_interface_upf_info_item_s OpenAPI_interface_upf_info_item_t;
|
||||
typedef struct OpenAPI_interface_upf_info_item_s {
|
||||
struct OpenAPI_up_interface_type_s *interface_type;
|
||||
OpenAPI_list_t *ipv4_endpoint_addresses;
|
||||
OpenAPI_list_t *ipv6_endpoint_addresses;
|
||||
char *endpoint_fqdn;
|
||||
char *network_instance;
|
||||
} OpenAPI_interface_upf_info_item_t;
|
||||
|
||||
OpenAPI_interface_upf_info_item_t *OpenAPI_interface_upf_info_item_create(
|
||||
OpenAPI_up_interface_type_t *interface_type,
|
||||
OpenAPI_list_t *ipv4_endpoint_addresses,
|
||||
OpenAPI_list_t *ipv6_endpoint_addresses,
|
||||
char *endpoint_fqdn,
|
||||
char *network_instance
|
||||
);
|
||||
void OpenAPI_interface_upf_info_item_free(OpenAPI_interface_upf_info_item_t *interface_upf_info_item);
|
||||
OpenAPI_interface_upf_info_item_t *OpenAPI_interface_upf_info_item_parseFromJSON(cJSON *interface_upf_info_itemJSON);
|
||||
cJSON *OpenAPI_interface_upf_info_item_convertToJSON(OpenAPI_interface_upf_info_item_t *interface_upf_info_item);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_interface_upf_info_item_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue