mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
|
|
@ -13,6 +13,7 @@
|
|||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_type.h"
|
||||
#include "ip_addr.h"
|
||||
#include "snssai_smf_info_item.h"
|
||||
#include "tai.h"
|
||||
#include "tai_range.h"
|
||||
|
|
@ -27,11 +28,19 @@ typedef struct OpenAPI_smf_info_s {
|
|||
OpenAPI_list_t *tai_list;
|
||||
OpenAPI_list_t *tai_range_list;
|
||||
char *pgw_fqdn;
|
||||
OpenAPI_list_t *pgw_ip_addr_list;
|
||||
OpenAPI_list_t *access_type;
|
||||
bool is_priority;
|
||||
int priority;
|
||||
bool is_vsmf_support_ind;
|
||||
int vsmf_support_ind;
|
||||
OpenAPI_list_t *pgw_fqdn_list;
|
||||
bool is_smf_onboarding_capability;
|
||||
int smf_onboarding_capability;
|
||||
bool is_ismf_support_ind;
|
||||
int ismf_support_ind;
|
||||
bool is_smf_uprp_capability;
|
||||
int smf_uprp_capability;
|
||||
} OpenAPI_smf_info_t;
|
||||
|
||||
OpenAPI_smf_info_t *OpenAPI_smf_info_create(
|
||||
|
|
@ -39,11 +48,19 @@ OpenAPI_smf_info_t *OpenAPI_smf_info_create(
|
|||
OpenAPI_list_t *tai_list,
|
||||
OpenAPI_list_t *tai_range_list,
|
||||
char *pgw_fqdn,
|
||||
OpenAPI_list_t *pgw_ip_addr_list,
|
||||
OpenAPI_list_t *access_type,
|
||||
bool is_priority,
|
||||
int priority,
|
||||
bool is_vsmf_support_ind,
|
||||
int vsmf_support_ind
|
||||
int vsmf_support_ind,
|
||||
OpenAPI_list_t *pgw_fqdn_list,
|
||||
bool is_smf_onboarding_capability,
|
||||
int smf_onboarding_capability,
|
||||
bool is_ismf_support_ind,
|
||||
int ismf_support_ind,
|
||||
bool is_smf_uprp_capability,
|
||||
int smf_uprp_capability
|
||||
);
|
||||
void OpenAPI_smf_info_free(OpenAPI_smf_info_t *smf_info);
|
||||
OpenAPI_smf_info_t *OpenAPI_smf_info_parseFromJSON(cJSON *smf_infoJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue