mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20: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
36
lib/sbi/openapi/model/request_indication.h
Normal file
36
lib/sbi/openapi/model/request_indication.h
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* request_indication.h
|
||||
*
|
||||
* Possible values are - UE_REQ_PDU_SES_MOD - UE_REQ_PDU_SES_REL - PDU_SES_MOB - NW_REQ_PDU_SES_AUTH - NW_REQ_PDU_SES_MOD - NW_REQ_PDU_SES_REL - EBI_ASSIGNMENT_REQ
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_request_indication_H_
|
||||
#define _OpenAPI_request_indication_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_request_indication_s OpenAPI_request_indication_t;
|
||||
typedef struct OpenAPI_request_indication_s {
|
||||
} OpenAPI_request_indication_t;
|
||||
|
||||
OpenAPI_request_indication_t *OpenAPI_request_indication_create(
|
||||
);
|
||||
void OpenAPI_request_indication_free(OpenAPI_request_indication_t *request_indication);
|
||||
OpenAPI_request_indication_t *OpenAPI_request_indication_parseFromJSON(cJSON *request_indicationJSON);
|
||||
cJSON *OpenAPI_request_indication_convertToJSON(OpenAPI_request_indication_t *request_indication);
|
||||
OpenAPI_request_indication_t *OpenAPI_request_indication_copy(OpenAPI_request_indication_t *dst, OpenAPI_request_indication_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_request_indication_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue