mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 05:10:10 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
40
lib/sbi/openapi/model/trace_data_response.h
Normal file
40
lib/sbi/openapi/model/trace_data_response.h
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* trace_data_response.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_trace_data_response_H_
|
||||
#define _OpenAPI_trace_data_response_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "trace_data.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_trace_data_response_s OpenAPI_trace_data_response_t;
|
||||
typedef struct OpenAPI_trace_data_response_s {
|
||||
struct OpenAPI_trace_data_s *trace_data;
|
||||
char *shared_trace_data_id;
|
||||
} OpenAPI_trace_data_response_t;
|
||||
|
||||
OpenAPI_trace_data_response_t *OpenAPI_trace_data_response_create(
|
||||
OpenAPI_trace_data_t *trace_data,
|
||||
char *shared_trace_data_id
|
||||
);
|
||||
void OpenAPI_trace_data_response_free(OpenAPI_trace_data_response_t *trace_data_response);
|
||||
OpenAPI_trace_data_response_t *OpenAPI_trace_data_response_parseFromJSON(cJSON *trace_data_responseJSON);
|
||||
cJSON *OpenAPI_trace_data_response_convertToJSON(OpenAPI_trace_data_response_t *trace_data_response);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_trace_data_response_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue