[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 "pcscf_address.h"
#ifdef __cplusplus
extern "C" {
@ -20,10 +21,12 @@ extern "C" {
typedef struct OpenAPI_pcscf_restoration_notification_s OpenAPI_pcscf_restoration_notification_t;
typedef struct OpenAPI_pcscf_restoration_notification_s {
char *supi;
struct OpenAPI_pcscf_address_s *failed_pcscf;
} OpenAPI_pcscf_restoration_notification_t;
OpenAPI_pcscf_restoration_notification_t *OpenAPI_pcscf_restoration_notification_create(
char *supi
char *supi,
OpenAPI_pcscf_address_t *failed_pcscf
);
void OpenAPI_pcscf_restoration_notification_free(OpenAPI_pcscf_restoration_notification_t *pcscf_restoration_notification);
OpenAPI_pcscf_restoration_notification_t *OpenAPI_pcscf_restoration_notification_parseFromJSON(cJSON *pcscf_restoration_notificationJSON);