mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +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
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* status_notification.h
|
||||
*
|
||||
*
|
||||
* Data within Notify Status Request
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_status_notification_H_
|
||||
|
|
@ -13,8 +13,10 @@
|
|||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "apn_rate_status.h"
|
||||
#include "eps_pdn_cnx_info.h"
|
||||
#include "small_data_rate_status.h"
|
||||
#include "status_info.h"
|
||||
#include "target_dnai_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
@ -25,12 +27,24 @@ typedef struct OpenAPI_status_notification_s {
|
|||
struct OpenAPI_status_info_s *status_info;
|
||||
struct OpenAPI_small_data_rate_status_s *small_data_rate_status;
|
||||
struct OpenAPI_apn_rate_status_s *apn_rate_status;
|
||||
struct OpenAPI_target_dnai_info_s *target_dnai_info;
|
||||
char *old_pdu_session_ref;
|
||||
char *new_smf_id;
|
||||
struct OpenAPI_eps_pdn_cnx_info_s *eps_pdn_cnx_info;
|
||||
char *inter_plmn_api_root;
|
||||
char *intra_plmn_api_root;
|
||||
} OpenAPI_status_notification_t;
|
||||
|
||||
OpenAPI_status_notification_t *OpenAPI_status_notification_create(
|
||||
OpenAPI_status_info_t *status_info,
|
||||
OpenAPI_small_data_rate_status_t *small_data_rate_status,
|
||||
OpenAPI_apn_rate_status_t *apn_rate_status
|
||||
OpenAPI_apn_rate_status_t *apn_rate_status,
|
||||
OpenAPI_target_dnai_info_t *target_dnai_info,
|
||||
char *old_pdu_session_ref,
|
||||
char *new_smf_id,
|
||||
OpenAPI_eps_pdn_cnx_info_t *eps_pdn_cnx_info,
|
||||
char *inter_plmn_api_root,
|
||||
char *intra_plmn_api_root
|
||||
);
|
||||
void OpenAPI_status_notification_free(OpenAPI_status_notification_t *status_notification);
|
||||
OpenAPI_status_notification_t *OpenAPI_status_notification_parseFromJSON(cJSON *status_notificationJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue