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
45
lib/sbi/openapi/model/pws_response_data.h
Normal file
45
lib/sbi/openapi/model/pws_response_data.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* pws_response_data.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_pws_response_data_H_
|
||||
#define _OpenAPI_pws_response_data_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "tai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_pws_response_data_s OpenAPI_pws_response_data_t;
|
||||
typedef struct OpenAPI_pws_response_data_s {
|
||||
int ngap_message_type;
|
||||
int serial_number;
|
||||
int message_identifier;
|
||||
OpenAPI_list_t *unknown_tai_list;
|
||||
} OpenAPI_pws_response_data_t;
|
||||
|
||||
OpenAPI_pws_response_data_t *OpenAPI_pws_response_data_create(
|
||||
int ngap_message_type,
|
||||
int serial_number,
|
||||
int message_identifier,
|
||||
OpenAPI_list_t *unknown_tai_list
|
||||
);
|
||||
void OpenAPI_pws_response_data_free(OpenAPI_pws_response_data_t *pws_response_data);
|
||||
OpenAPI_pws_response_data_t *OpenAPI_pws_response_data_parseFromJSON(cJSON *pws_response_dataJSON);
|
||||
cJSON *OpenAPI_pws_response_data_convertToJSON(OpenAPI_pws_response_data_t *pws_response_data);
|
||||
OpenAPI_pws_response_data_t *OpenAPI_pws_response_data_copy(OpenAPI_pws_response_data_t *dst, OpenAPI_pws_response_data_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_pws_response_data_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue