[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 "ip_address.h"
#include "plmn_id.h"
#ifdef __cplusplus
@ -22,17 +23,23 @@ typedef struct OpenAPI_pgw_info_s OpenAPI_pgw_info_t;
typedef struct OpenAPI_pgw_info_s {
char *dnn;
char *pgw_fqdn;
struct OpenAPI_ip_address_s *pgw_ip_addr;
struct OpenAPI_plmn_id_s *plmn_id;
bool is_epdg_ind;
int epdg_ind;
char *pcf_id;
char *registration_time;
} OpenAPI_pgw_info_t;
OpenAPI_pgw_info_t *OpenAPI_pgw_info_create(
char *dnn,
char *pgw_fqdn,
OpenAPI_ip_address_t *pgw_ip_addr,
OpenAPI_plmn_id_t *plmn_id,
bool is_epdg_ind,
int epdg_ind
int epdg_ind,
char *pcf_id,
char *registration_time
);
void OpenAPI_pgw_info_free(OpenAPI_pgw_info_t *pgw_info);
OpenAPI_pgw_info_t *OpenAPI_pgw_info_parseFromJSON(cJSON *pgw_infoJSON);