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
|
|
@ -12,6 +12,7 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "ip_address.h"
|
||||
#include "plmn_id.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -22,17 +23,23 @@ typedef struct OpenAPI_pgw_info_s OpenAPI_pgw_info_t;
|
|||
typedef struct OpenAPI_pgw_info_s {
|
||||
char *dnn;
|
||||
char *pgw_fqdn;
|
||||
struct OpenAPI_ip_address_s *pgw_ip_addr;
|
||||
struct OpenAPI_plmn_id_s *plmn_id;
|
||||
bool is_epdg_ind;
|
||||
int epdg_ind;
|
||||
char *pcf_id;
|
||||
char *registration_time;
|
||||
} OpenAPI_pgw_info_t;
|
||||
|
||||
OpenAPI_pgw_info_t *OpenAPI_pgw_info_create(
|
||||
char *dnn,
|
||||
char *pgw_fqdn,
|
||||
OpenAPI_ip_address_t *pgw_ip_addr,
|
||||
OpenAPI_plmn_id_t *plmn_id,
|
||||
bool is_epdg_ind,
|
||||
int epdg_ind
|
||||
int epdg_ind,
|
||||
char *pcf_id,
|
||||
char *registration_time
|
||||
);
|
||||
void OpenAPI_pgw_info_free(OpenAPI_pgw_info_t *pgw_info);
|
||||
OpenAPI_pgw_info_t *OpenAPI_pgw_info_parseFromJSON(cJSON *pgw_infoJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue