mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-22 15:31:16 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
31
lib/sbi/openapi/model/ciphering_algorithm.h
Normal file
31
lib/sbi/openapi/model/ciphering_algorithm.h
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* ciphering_algorithm.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ciphering_algorithm_H_
|
||||
#define _OpenAPI_ciphering_algorithm_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_ciphering_algorithm_NULL = 0, OpenAPI_ciphering_algorithm_NEA0, OpenAPI_ciphering_algorithm_NEA1, OpenAPI_ciphering_algorithm_NEA2, OpenAPI_ciphering_algorithm_NEA3 } OpenAPI_ciphering_algorithm_e;
|
||||
|
||||
char* OpenAPI_ciphering_algorithm_ToString(OpenAPI_ciphering_algorithm_e ciphering_algorithm);
|
||||
|
||||
OpenAPI_ciphering_algorithm_e OpenAPI_ciphering_algorithm_FromString(char* ciphering_algorithm);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ciphering_algorithm_H_ */
|
||||
|
||||
Reference in New Issue
Block a user