[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

@ -17,6 +17,7 @@
#include "pdu_session_type.h"
#include "snssai_upf_info_item.h"
#include "tai.h"
#include "tai_range.h"
#include "tngf_info.h"
#include "twif_info.h"
#include "w_agf_info.h"
@ -37,6 +38,7 @@ typedef struct OpenAPI_upf_info_s {
bool is_ue_ip_addr_ind;
int ue_ip_addr_ind;
OpenAPI_list_t *tai_list;
OpenAPI_list_t *tai_range_list;
struct OpenAPI_w_agf_info_s *w_agf_info;
struct OpenAPI_tngf_info_s *tngf_info;
struct OpenAPI_twif_info_s *twif_info;
@ -48,6 +50,7 @@ typedef struct OpenAPI_upf_info_s {
int ipups;
bool is_data_forwarding;
int data_forwarding;
char *supported_pfcp_features;
} OpenAPI_upf_info_t;
OpenAPI_upf_info_t *OpenAPI_upf_info_create(
@ -61,6 +64,7 @@ OpenAPI_upf_info_t *OpenAPI_upf_info_create(
bool is_ue_ip_addr_ind,
int ue_ip_addr_ind,
OpenAPI_list_t *tai_list,
OpenAPI_list_t *tai_range_list,
OpenAPI_w_agf_info_t *w_agf_info,
OpenAPI_tngf_info_t *tngf_info,
OpenAPI_twif_info_t *twif_info,
@ -71,7 +75,8 @@ OpenAPI_upf_info_t *OpenAPI_upf_info_create(
bool is_ipups,
int ipups,
bool is_data_forwarding,
int data_forwarding
int data_forwarding,
char *supported_pfcp_features
);
void OpenAPI_upf_info_free(OpenAPI_upf_info_t *upf_info);
OpenAPI_upf_info_t *OpenAPI_upf_info_parseFromJSON(cJSON *upf_infoJSON);