mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
30
lib/sbi/openapi/model/protection_result.c
Normal file
30
lib/sbi/openapi/model/protection_result.c
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "protection_result.h"
|
||||
|
||||
char* OpenAPI_protection_result_ToString(OpenAPI_protection_result_e protection_result)
|
||||
{
|
||||
const char *protection_resultArray[] = { "NULL", "PERFORMED", "NOT_PERFORMED" };
|
||||
size_t sizeofArray = sizeof(protection_resultArray) / sizeof(protection_resultArray[0]);
|
||||
if (protection_result < sizeofArray)
|
||||
return (char *)protection_resultArray[protection_result];
|
||||
else
|
||||
return (char *)"Unknown";
|
||||
}
|
||||
|
||||
OpenAPI_protection_result_e OpenAPI_protection_result_FromString(char* protection_result)
|
||||
{
|
||||
int stringToReturn = 0;
|
||||
const char *protection_resultArray[] = { "NULL", "PERFORMED", "NOT_PERFORMED" };
|
||||
size_t sizeofArray = sizeof(protection_resultArray) / sizeof(protection_resultArray[0]);
|
||||
while (stringToReturn < sizeofArray) {
|
||||
if (strcmp(protection_result, protection_resultArray[stringToReturn]) == 0) {
|
||||
return stringToReturn;
|
||||
}
|
||||
stringToReturn++;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue