mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
Added N32 Interface to implement SEPP
This commit is contained in:
parent
a8790713d7
commit
e41afff7ac
63 changed files with 5503 additions and 290 deletions
31
lib/sbi/openapi/model/failure_reason.h
Normal file
31
lib/sbi/openapi/model/failure_reason.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* failure_reason.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_failure_reason_H_
|
||||
#define _OpenAPI_failure_reason_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 enum { OpenAPI_failure_reason_NULL = 0, OpenAPI_failure_reason_INVALID_JSON_POINTER, OpenAPI_failure_reason_INVALID_INDEX_TO_ENCRYPTED_BLOCK, OpenAPI_failure_reason_INVALID_HTTP_HEADER } OpenAPI_failure_reason_e;
|
||||
|
||||
char* OpenAPI_failure_reason_ToString(OpenAPI_failure_reason_e failure_reason);
|
||||
|
||||
OpenAPI_failure_reason_e OpenAPI_failure_reason_FromString(char* failure_reason);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_failure_reason_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue