mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
parent
20008b6a13
commit
dbee687a75
1415 changed files with 86635 additions and 5877 deletions
48
lib/sbi/openapi/model/status_info.h
Normal file
48
lib/sbi/openapi/model/status_info.h
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* status_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_status_info_H_
|
||||
#define _OpenAPI_status_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_type.h"
|
||||
#include "cause.h"
|
||||
#include "cn_assisted_ran_para.h"
|
||||
#include "resource_status.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_status_info_s OpenAPI_status_info_t;
|
||||
typedef struct OpenAPI_status_info_s {
|
||||
struct OpenAPI_resource_status_s *resource_status;
|
||||
struct OpenAPI_cause_s *cause;
|
||||
struct OpenAPI_cn_assisted_ran_para_s *cn_assisted_ran_para;
|
||||
OpenAPI_access_type_e an_type;
|
||||
} OpenAPI_status_info_t;
|
||||
|
||||
OpenAPI_status_info_t *OpenAPI_status_info_create(
|
||||
OpenAPI_resource_status_t *resource_status,
|
||||
OpenAPI_cause_t *cause,
|
||||
OpenAPI_cn_assisted_ran_para_t *cn_assisted_ran_para,
|
||||
OpenAPI_access_type_e an_type
|
||||
);
|
||||
void OpenAPI_status_info_free(OpenAPI_status_info_t *status_info);
|
||||
OpenAPI_status_info_t *OpenAPI_status_info_parseFromJSON(cJSON *status_infoJSON);
|
||||
cJSON *OpenAPI_status_info_convertToJSON(OpenAPI_status_info_t *status_info);
|
||||
OpenAPI_status_info_t *OpenAPI_status_info_copy(OpenAPI_status_info_t *dst, OpenAPI_status_info_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_status_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue