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 @@
|
|||
/*
|
||||
* retrieved_data.h
|
||||
*
|
||||
*
|
||||
* Data within Retrieve Response
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_retrieved_data_H_
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "af_coordination_info.h"
|
||||
#include "small_data_rate_status.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
@ -21,10 +22,12 @@ extern "C" {
|
|||
typedef struct OpenAPI_retrieved_data_s OpenAPI_retrieved_data_t;
|
||||
typedef struct OpenAPI_retrieved_data_s {
|
||||
struct OpenAPI_small_data_rate_status_s *small_data_rate_status;
|
||||
struct OpenAPI_af_coordination_info_s *af_coordination_info;
|
||||
} OpenAPI_retrieved_data_t;
|
||||
|
||||
OpenAPI_retrieved_data_t *OpenAPI_retrieved_data_create(
|
||||
OpenAPI_small_data_rate_status_t *small_data_rate_status
|
||||
OpenAPI_small_data_rate_status_t *small_data_rate_status,
|
||||
OpenAPI_af_coordination_info_t *af_coordination_info
|
||||
);
|
||||
void OpenAPI_retrieved_data_free(OpenAPI_retrieved_data_t *retrieved_data);
|
||||
OpenAPI_retrieved_data_t *OpenAPI_retrieved_data_parseFromJSON(cJSON *retrieved_dataJSON);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue