mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 05:10:10 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
51
lib/sbi/openapi/model/access_tech.c
Normal file
51
lib/sbi/openapi/model/access_tech.c
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "access_tech.h"
|
||||
|
||||
OpenAPI_access_tech_t *OpenAPI_access_tech_create(
|
||||
)
|
||||
{
|
||||
OpenAPI_access_tech_t *access_tech_local_var = OpenAPI_malloc(sizeof(OpenAPI_access_tech_t));
|
||||
if (!access_tech_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return access_tech_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_access_tech_free(OpenAPI_access_tech_t *access_tech)
|
||||
{
|
||||
if (NULL == access_tech) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
ogs_free(access_tech);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_access_tech_convertToJSON(OpenAPI_access_tech_t *access_tech)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (access_tech == NULL) {
|
||||
ogs_error("OpenAPI_access_tech_convertToJSON() failed [AccessTech]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_access_tech_t *OpenAPI_access_tech_parseFromJSON(cJSON *access_techJSON)
|
||||
{
|
||||
OpenAPI_access_tech_t *access_tech_local_var = NULL;
|
||||
access_tech_local_var = OpenAPI_access_tech_create (
|
||||
);
|
||||
|
||||
return access_tech_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue