mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +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
|
|
@ -39,6 +39,7 @@ typedef struct OpenAPI_sm_policy_decision_s OpenAPI_sm_policy_decision_t;
|
|||
typedef struct OpenAPI_sm_policy_decision_s {
|
||||
OpenAPI_list_t* sess_rules;
|
||||
OpenAPI_list_t* pcc_rules;
|
||||
bool is_pcscf_rest_indication;
|
||||
int pcscf_rest_indication;
|
||||
OpenAPI_list_t* qos_decs;
|
||||
OpenAPI_list_t* chg_decs;
|
||||
|
|
@ -47,16 +48,21 @@ typedef struct OpenAPI_sm_policy_decision_s {
|
|||
OpenAPI_list_t* um_decs;
|
||||
OpenAPI_list_t* qos_chars;
|
||||
OpenAPI_list_t* qos_mon_decs;
|
||||
bool is_reflective_qo_s_timer;
|
||||
int reflective_qo_s_timer;
|
||||
OpenAPI_list_t* conds;
|
||||
char *revalidation_time;
|
||||
bool is_offline;
|
||||
int offline;
|
||||
bool is_online;
|
||||
int online;
|
||||
OpenAPI_list_t *policy_ctrl_req_triggers;
|
||||
OpenAPI_list_t *last_req_rule_data;
|
||||
struct OpenAPI_requested_usage_data_s *last_req_usage_data;
|
||||
OpenAPI_list_t* pra_infos;
|
||||
bool is_ipv4_index;
|
||||
int ipv4_index;
|
||||
bool is_ipv6_index;
|
||||
int ipv6_index;
|
||||
OpenAPI_qos_flow_usage_e qos_flow_usage;
|
||||
OpenAPI_sm_policy_association_release_cause_e rel_cause;
|
||||
|
|
@ -64,12 +70,14 @@ typedef struct OpenAPI_sm_policy_decision_s {
|
|||
struct OpenAPI_bridge_management_container_s *tsn_bridge_man_cont;
|
||||
struct OpenAPI_port_management_container_s *tsn_port_man_cont_dstt;
|
||||
OpenAPI_list_t *tsn_port_man_cont_nwtts;
|
||||
bool is_red_sess_indication;
|
||||
int red_sess_indication;
|
||||
} OpenAPI_sm_policy_decision_t;
|
||||
|
||||
OpenAPI_sm_policy_decision_t *OpenAPI_sm_policy_decision_create(
|
||||
OpenAPI_list_t* sess_rules,
|
||||
OpenAPI_list_t* pcc_rules,
|
||||
bool is_pcscf_rest_indication,
|
||||
int pcscf_rest_indication,
|
||||
OpenAPI_list_t* qos_decs,
|
||||
OpenAPI_list_t* chg_decs,
|
||||
|
|
@ -78,16 +86,21 @@ OpenAPI_sm_policy_decision_t *OpenAPI_sm_policy_decision_create(
|
|||
OpenAPI_list_t* um_decs,
|
||||
OpenAPI_list_t* qos_chars,
|
||||
OpenAPI_list_t* qos_mon_decs,
|
||||
bool is_reflective_qo_s_timer,
|
||||
int reflective_qo_s_timer,
|
||||
OpenAPI_list_t* conds,
|
||||
char *revalidation_time,
|
||||
bool is_offline,
|
||||
int offline,
|
||||
bool is_online,
|
||||
int online,
|
||||
OpenAPI_list_t *policy_ctrl_req_triggers,
|
||||
OpenAPI_list_t *last_req_rule_data,
|
||||
OpenAPI_requested_usage_data_t *last_req_usage_data,
|
||||
OpenAPI_list_t* pra_infos,
|
||||
bool is_ipv4_index,
|
||||
int ipv4_index,
|
||||
bool is_ipv6_index,
|
||||
int ipv6_index,
|
||||
OpenAPI_qos_flow_usage_e qos_flow_usage,
|
||||
OpenAPI_sm_policy_association_release_cause_e rel_cause,
|
||||
|
|
@ -95,6 +108,7 @@ OpenAPI_sm_policy_decision_t *OpenAPI_sm_policy_decision_create(
|
|||
OpenAPI_bridge_management_container_t *tsn_bridge_man_cont,
|
||||
OpenAPI_port_management_container_t *tsn_port_man_cont_dstt,
|
||||
OpenAPI_list_t *tsn_port_man_cont_nwtts,
|
||||
bool is_red_sess_indication,
|
||||
int red_sess_indication
|
||||
);
|
||||
void OpenAPI_sm_policy_decision_free(OpenAPI_sm_policy_decision_t *sm_policy_decision);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue