mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
feat: Add dedicated QoS flow
This commit is contained in:
parent
65aea5ebf2
commit
235a041b8d
205 changed files with 6053 additions and 3831 deletions
|
|
@ -4,82 +4,27 @@
|
|||
#include <stdio.h>
|
||||
#include "af_sig_protocol.h"
|
||||
|
||||
OpenAPI_af_sig_protocol_t *OpenAPI_af_sig_protocol_create(
|
||||
)
|
||||
char* OpenAPI_af_sig_protocol_ToString(OpenAPI_af_sig_protocol_e af_sig_protocol)
|
||||
{
|
||||
OpenAPI_af_sig_protocol_t *af_sig_protocol_local_var = OpenAPI_malloc(sizeof(OpenAPI_af_sig_protocol_t));
|
||||
if (!af_sig_protocol_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return af_sig_protocol_local_var;
|
||||
const char *af_sig_protocolArray[] = { "NULL", "NO_INFORMATION", "SIP" };
|
||||
size_t sizeofArray = sizeof(af_sig_protocolArray) / sizeof(af_sig_protocolArray[0]);
|
||||
if (af_sig_protocol < sizeofArray)
|
||||
return (char *)af_sig_protocolArray[af_sig_protocol];
|
||||
else
|
||||
return (char *)"Unknown";
|
||||
}
|
||||
|
||||
void OpenAPI_af_sig_protocol_free(OpenAPI_af_sig_protocol_t *af_sig_protocol)
|
||||
OpenAPI_af_sig_protocol_e OpenAPI_af_sig_protocol_FromString(char* af_sig_protocol)
|
||||
{
|
||||
if (NULL == af_sig_protocol) {
|
||||
return;
|
||||
int stringToReturn = 0;
|
||||
const char *af_sig_protocolArray[] = { "NULL", "NO_INFORMATION", "SIP" };
|
||||
size_t sizeofArray = sizeof(af_sig_protocolArray) / sizeof(af_sig_protocolArray[0]);
|
||||
while (stringToReturn < sizeofArray) {
|
||||
if (strcmp(af_sig_protocol, af_sig_protocolArray[stringToReturn]) == 0) {
|
||||
return stringToReturn;
|
||||
}
|
||||
stringToReturn++;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
ogs_free(af_sig_protocol);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_af_sig_protocol_convertToJSON(OpenAPI_af_sig_protocol_t *af_sig_protocol)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (af_sig_protocol == NULL) {
|
||||
ogs_error("OpenAPI_af_sig_protocol_convertToJSON() failed [AfSigProtocol]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_af_sig_protocol_t *OpenAPI_af_sig_protocol_parseFromJSON(cJSON *af_sig_protocolJSON)
|
||||
{
|
||||
OpenAPI_af_sig_protocol_t *af_sig_protocol_local_var = NULL;
|
||||
af_sig_protocol_local_var = OpenAPI_af_sig_protocol_create (
|
||||
);
|
||||
|
||||
return af_sig_protocol_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_af_sig_protocol_t *OpenAPI_af_sig_protocol_copy(OpenAPI_af_sig_protocol_t *dst, OpenAPI_af_sig_protocol_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_af_sig_protocol_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_af_sig_protocol_convertToJSON() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
content = cJSON_Print(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
if (!content) {
|
||||
ogs_error("cJSON_Print() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_Parse(content);
|
||||
ogs_free(content);
|
||||
if (!item) {
|
||||
ogs_error("cJSON_Parse() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_af_sig_protocol_free(dst);
|
||||
dst = OpenAPI_af_sig_protocol_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue