Add only one 5GC scenario (call-flow)

This commit is contained in:
Sukchan Lee
2020-06-17 01:22:28 -04:00
parent 20008b6a13
commit dbee687a75
1415 changed files with 86635 additions and 5877 deletions

View File

@@ -0,0 +1,31 @@
/*
* integrity_algorithm.h
*
*
*/
#ifndef _OpenAPI_integrity_algorithm_H_
#define _OpenAPI_integrity_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_integrity_algorithm_NULL = 0, OpenAPI_integrity_algorithm_NIA0, OpenAPI_integrity_algorithm_NIA1, OpenAPI_integrity_algorithm_NIA2, OpenAPI_integrity_algorithm_NIA3 } OpenAPI_integrity_algorithm_e;
char* OpenAPI_integrity_algorithm_ToString(OpenAPI_integrity_algorithm_e integrity_algorithm);
OpenAPI_integrity_algorithm_e OpenAPI_integrity_algorithm_FromString(char* integrity_algorithm);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_integrity_algorithm_H_ */