[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

@ -13,7 +13,9 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "identity_range.h"
#include "pro_se_capability.h"
#include "supi_range.h"
#include "v2x_capability.h"
#ifdef __cplusplus
extern "C" {
@ -29,6 +31,10 @@ typedef struct OpenAPI_pcf_info_s {
char *rx_diam_realm;
bool is_v2x_support_ind;
int v2x_support_ind;
bool is_prose_support_ind;
int prose_support_ind;
struct OpenAPI_pro_se_capability_s *prose_capability;
struct OpenAPI_v2x_capability_s *v2x_capability;
} OpenAPI_pcf_info_t;
OpenAPI_pcf_info_t *OpenAPI_pcf_info_create(
@ -39,7 +45,11 @@ OpenAPI_pcf_info_t *OpenAPI_pcf_info_create(
char *rx_diam_host,
char *rx_diam_realm,
bool is_v2x_support_ind,
int v2x_support_ind
int v2x_support_ind,
bool is_prose_support_ind,
int prose_support_ind,
OpenAPI_pro_se_capability_t *prose_capability,
OpenAPI_v2x_capability_t *v2x_capability
);
void OpenAPI_pcf_info_free(OpenAPI_pcf_info_t *pcf_info);
OpenAPI_pcf_info_t *OpenAPI_pcf_info_parseFromJSON(cJSON *pcf_infoJSON);