mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +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
|
|
@ -12,8 +12,10 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "identity_range.h"
|
||||
#include "ipv4_address_range.h"
|
||||
#include "ipv6_prefix_range.h"
|
||||
#include "supi_range.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -25,13 +27,23 @@ typedef struct OpenAPI_bsf_info_s {
|
|||
OpenAPI_list_t *ip_domain_list;
|
||||
OpenAPI_list_t *ipv4_address_ranges;
|
||||
OpenAPI_list_t *ipv6_prefix_ranges;
|
||||
char *rx_diam_host;
|
||||
char *rx_diam_realm;
|
||||
char *group_id;
|
||||
OpenAPI_list_t *supi_ranges;
|
||||
OpenAPI_list_t *gpsi_ranges;
|
||||
} OpenAPI_bsf_info_t;
|
||||
|
||||
OpenAPI_bsf_info_t *OpenAPI_bsf_info_create(
|
||||
OpenAPI_list_t *dnn_list,
|
||||
OpenAPI_list_t *ip_domain_list,
|
||||
OpenAPI_list_t *ipv4_address_ranges,
|
||||
OpenAPI_list_t *ipv6_prefix_ranges
|
||||
OpenAPI_list_t *ipv6_prefix_ranges,
|
||||
char *rx_diam_host,
|
||||
char *rx_diam_realm,
|
||||
char *group_id,
|
||||
OpenAPI_list_t *supi_ranges,
|
||||
OpenAPI_list_t *gpsi_ranges
|
||||
);
|
||||
void OpenAPI_bsf_info_free(OpenAPI_bsf_info_t *bsf_info);
|
||||
OpenAPI_bsf_info_t *OpenAPI_bsf_info_parseFromJSON(cJSON *bsf_infoJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue