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

31 lines
1,000 B
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "node_type.h"
char* OpenAPI_node_type_ToString(OpenAPI_node_type_e node_type)
{
const char *node_typeArray[] = { "NULL", "AUSF", "VLR", "SGSN", "S_CSCF", "BSF", "GAN_AAA_SERVER", "WLAN_AAA_SERVER", "MME" };
size_t sizeofArray = sizeof(node_typeArray) / sizeof(node_typeArray[0]);
if (node_type < sizeofArray)
return (char *)node_typeArray[node_type];
else
return (char *)"Unknown";
}
OpenAPI_node_type_e OpenAPI_node_type_FromString(char* node_type)
{
int stringToReturn = 0;
const char *node_typeArray[] = { "NULL", "AUSF", "VLR", "SGSN", "S_CSCF", "BSF", "GAN_AAA_SERVER", "WLAN_AAA_SERVER", "MME" };
size_t sizeofArray = sizeof(node_typeArray) / sizeof(node_typeArray[0]);
while (stringToReturn < sizeofArray) {
if (strcmp(node_type, node_typeArray[stringToReturn]) == 0) {
return stringToReturn;
}
stringToReturn++;
}
return 0;
}