[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

@ -1,7 +1,7 @@
/*
* preferred_search.h
*
* Contains information on whether the returned NFProfiles match the preferred query parameters
* Contains information on whether the returned NFProfiles match the preferred query parameters
*/
#ifndef _OpenAPI_preferred_search_H_
@ -31,6 +31,14 @@ typedef struct OpenAPI_preferred_search_s {
int preferred_locality_match_ind;
bool is_other_locality_ind;
int other_locality_ind;
bool is_preferred_vendor_specific_features_ind;
int preferred_vendor_specific_features_ind;
bool is_preferred_collocated_nf_type_ind;
int preferred_collocated_nf_type_ind;
bool is_preferred_pgw_match_ind;
int preferred_pgw_match_ind;
bool is_preferred_analytics_delays_ind;
int preferred_analytics_delays_ind;
} OpenAPI_preferred_search_t;
OpenAPI_preferred_search_t *OpenAPI_preferred_search_create(
@ -45,7 +53,15 @@ OpenAPI_preferred_search_t *OpenAPI_preferred_search_create(
bool is_preferred_locality_match_ind,
int preferred_locality_match_ind,
bool is_other_locality_ind,
int other_locality_ind
int other_locality_ind,
bool is_preferred_vendor_specific_features_ind,
int preferred_vendor_specific_features_ind,
bool is_preferred_collocated_nf_type_ind,
int preferred_collocated_nf_type_ind,
bool is_preferred_pgw_match_ind,
int preferred_pgw_match_ind,
bool is_preferred_analytics_delays_ind,
int preferred_analytics_delays_ind
);
void OpenAPI_preferred_search_free(OpenAPI_preferred_search_t *preferred_search);
OpenAPI_preferred_search_t *OpenAPI_preferred_search_parseFromJSON(cJSON *preferred_searchJSON);