mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
41
lib/sbi/openapi/model/upf_information.h
Normal file
41
lib/sbi/openapi/model/upf_information.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* upf_information.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_upf_information_H_
|
||||
#define _OpenAPI_upf_information_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "addr_fqdn.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_upf_information_s OpenAPI_upf_information_t;
|
||||
typedef struct OpenAPI_upf_information_s {
|
||||
char *upf_id;
|
||||
struct OpenAPI_addr_fqdn_s *upf_addr;
|
||||
} OpenAPI_upf_information_t;
|
||||
|
||||
OpenAPI_upf_information_t *OpenAPI_upf_information_create(
|
||||
char *upf_id,
|
||||
OpenAPI_addr_fqdn_t *upf_addr
|
||||
);
|
||||
void OpenAPI_upf_information_free(OpenAPI_upf_information_t *upf_information);
|
||||
OpenAPI_upf_information_t *OpenAPI_upf_information_parseFromJSON(cJSON *upf_informationJSON);
|
||||
cJSON *OpenAPI_upf_information_convertToJSON(OpenAPI_upf_information_t *upf_information);
|
||||
OpenAPI_upf_information_t *OpenAPI_upf_information_copy(OpenAPI_upf_information_t *dst, OpenAPI_upf_information_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_upf_information_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue