mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
SBI updated
- openapi-generator version 5.2.0 - add priority/capacity/load in NFProfile/NFService - add AllowedNfTypes in NFProfile/NFService
This commit is contained in:
parent
1326fc85dc
commit
039b9d0aaa
930 changed files with 7387 additions and 5434 deletions
|
|
@ -19,20 +19,32 @@ extern "C" {
|
|||
|
||||
typedef struct OpenAPI_preferred_search_s OpenAPI_preferred_search_t;
|
||||
typedef struct OpenAPI_preferred_search_s {
|
||||
bool is_preferred_tai_match_ind;
|
||||
int preferred_tai_match_ind;
|
||||
bool is_preferred_full_plmn_match_ind;
|
||||
int preferred_full_plmn_match_ind;
|
||||
bool is_preferred_api_versions_match_ind;
|
||||
int preferred_api_versions_match_ind;
|
||||
bool is_other_api_versions_ind;
|
||||
int other_api_versions_ind;
|
||||
bool is_preferred_locality_match_ind;
|
||||
int preferred_locality_match_ind;
|
||||
bool is_other_locality_ind;
|
||||
int other_locality_ind;
|
||||
} OpenAPI_preferred_search_t;
|
||||
|
||||
OpenAPI_preferred_search_t *OpenAPI_preferred_search_create(
|
||||
bool is_preferred_tai_match_ind,
|
||||
int preferred_tai_match_ind,
|
||||
bool is_preferred_full_plmn_match_ind,
|
||||
int preferred_full_plmn_match_ind,
|
||||
bool is_preferred_api_versions_match_ind,
|
||||
int preferred_api_versions_match_ind,
|
||||
bool is_other_api_versions_ind,
|
||||
int other_api_versions_ind,
|
||||
bool is_preferred_locality_match_ind,
|
||||
int preferred_locality_match_ind,
|
||||
bool is_other_locality_ind,
|
||||
int other_locality_ind
|
||||
);
|
||||
void OpenAPI_preferred_search_free(OpenAPI_preferred_search_t *preferred_search);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue