open5gs/lib/sbi/openapi/model/hss_auth_type.h
Sukchan Lee 9af4268bab arch: DB schema Changes (#796)
- New function : NSSF
- New feature : SMF selection
2021-03-08 21:25:09 +09:00

32 lines
785 B
C

/*
* hss_auth_type.h
*
*
*/
#ifndef _OpenAPI_hss_auth_type_H_
#define _OpenAPI_hss_auth_type_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_hss_auth_type_NULL = 0, OpenAPI_hss_auth_type_EPS_AKA, OpenAPI_hss_auth_type_EAP_AKA, OpenAPI_hss_auth_type_EAP_AKA_PRIME, OpenAPI_hss_auth_type_IMS_AKA, OpenAPI_hss_auth_type_GBA_AKA, OpenAPI_hss_auth_type_UMTS_AKA } OpenAPI_hss_auth_type_e;
char* OpenAPI_hss_auth_type_ToString(OpenAPI_hss_auth_type_e hss_auth_type);
OpenAPI_hss_auth_type_e OpenAPI_hss_auth_type_FromString(char* hss_auth_type);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_hss_auth_type_H_ */