mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
|
|
@ -13,6 +13,8 @@
|
|||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_type.h"
|
||||
#include "ipv4_address_range.h"
|
||||
#include "ipv6_prefix_range.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -25,6 +27,8 @@ typedef struct OpenAPI_pcscf_info_s {
|
|||
char *gm_fqdn;
|
||||
OpenAPI_list_t *gm_ipv4_addresses;
|
||||
OpenAPI_list_t *gm_ipv6_addresses;
|
||||
OpenAPI_list_t *served_ipv4_address_ranges;
|
||||
OpenAPI_list_t *served_ipv6_prefix_ranges;
|
||||
} OpenAPI_pcscf_info_t;
|
||||
|
||||
OpenAPI_pcscf_info_t *OpenAPI_pcscf_info_create(
|
||||
|
|
@ -32,8 +36,10 @@ OpenAPI_pcscf_info_t *OpenAPI_pcscf_info_create(
|
|||
OpenAPI_list_t *dnn_list,
|
||||
char *gm_fqdn,
|
||||
OpenAPI_list_t *gm_ipv4_addresses,
|
||||
OpenAPI_list_t *gm_ipv6_addresses
|
||||
);
|
||||
OpenAPI_list_t *gm_ipv6_addresses,
|
||||
OpenAPI_list_t *served_ipv4_address_ranges,
|
||||
OpenAPI_list_t *served_ipv6_prefix_ranges
|
||||
);
|
||||
void OpenAPI_pcscf_info_free(OpenAPI_pcscf_info_t *pcscf_info);
|
||||
OpenAPI_pcscf_info_t *OpenAPI_pcscf_info_parseFromJSON(cJSON *pcscf_infoJSON);
|
||||
cJSON *OpenAPI_pcscf_info_convertToJSON(OpenAPI_pcscf_info_t *pcscf_info);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue