[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "plmn_id.h"
#ifdef __cplusplus
extern "C" {
@ -21,11 +22,13 @@ typedef struct OpenAPI_eps_iwk_pgw_s OpenAPI_eps_iwk_pgw_t;
typedef struct OpenAPI_eps_iwk_pgw_s {
char *pgw_fqdn;
char *smf_instance_id;
struct OpenAPI_plmn_id_s *plmn_id;
} OpenAPI_eps_iwk_pgw_t;
OpenAPI_eps_iwk_pgw_t *OpenAPI_eps_iwk_pgw_create(
char *pgw_fqdn,
char *smf_instance_id
char *smf_instance_id,
OpenAPI_plmn_id_t *plmn_id
);
void OpenAPI_eps_iwk_pgw_free(OpenAPI_eps_iwk_pgw_t *eps_iwk_pgw);
OpenAPI_eps_iwk_pgw_t *OpenAPI_eps_iwk_pgw_parseFromJSON(cJSON *eps_iwk_pgwJSON);