mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
[SBI] Crash occurs when ENUM in the MAP (#2103)
This commit is contained in:
parent
ce668c556c
commit
969c116e77
1097 changed files with 266728 additions and 42047 deletions
45
lib/sbi/openapi/model/release_pdu_session_200_response.h
Normal file
45
lib/sbi/openapi/model/release_pdu_session_200_response.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* release_pdu_session_200_response.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_release_pdu_session_200_response_H_
|
||||
#define _OpenAPI_release_pdu_session_200_response_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "released_data.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_release_pdu_session_200_response_s OpenAPI_release_pdu_session_200_response_t;
|
||||
typedef struct OpenAPI_release_pdu_session_200_response_s {
|
||||
struct OpenAPI_released_data_s *json_data;
|
||||
OpenAPI_binary_t* binary_data_n4_information;
|
||||
OpenAPI_binary_t* binary_data_n4_information_ext1;
|
||||
OpenAPI_binary_t* binary_data_n4_information_ext2;
|
||||
} OpenAPI_release_pdu_session_200_response_t;
|
||||
|
||||
OpenAPI_release_pdu_session_200_response_t *OpenAPI_release_pdu_session_200_response_create(
|
||||
OpenAPI_released_data_t *json_data,
|
||||
OpenAPI_binary_t* binary_data_n4_information,
|
||||
OpenAPI_binary_t* binary_data_n4_information_ext1,
|
||||
OpenAPI_binary_t* binary_data_n4_information_ext2
|
||||
);
|
||||
void OpenAPI_release_pdu_session_200_response_free(OpenAPI_release_pdu_session_200_response_t *release_pdu_session_200_response);
|
||||
OpenAPI_release_pdu_session_200_response_t *OpenAPI_release_pdu_session_200_response_parseFromJSON(cJSON *release_pdu_session_200_responseJSON);
|
||||
cJSON *OpenAPI_release_pdu_session_200_response_convertToJSON(OpenAPI_release_pdu_session_200_response_t *release_pdu_session_200_response);
|
||||
OpenAPI_release_pdu_session_200_response_t *OpenAPI_release_pdu_session_200_response_copy(OpenAPI_release_pdu_session_200_response_t *dst, OpenAPI_release_pdu_session_200_response_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_release_pdu_session_200_response_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue