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

53 lines
1.2 KiB
C

/*
* dnn_info.h
*
*
*/
#ifndef _OpenAPI_dnn_info_H_
#define _OpenAPI_dnn_info_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 struct OpenAPI_dnn_info_s OpenAPI_dnn_info_t;
typedef struct OpenAPI_dnn_info_s {
char *dnn;
int default_dnn_indicator;
int lbo_roaming_allowed;
int iwk_eps_ind;
int dnn_barred;
int invoke_nef_ind;
OpenAPI_list_t *smf_list;
int same_smf_ind;
} OpenAPI_dnn_info_t;
OpenAPI_dnn_info_t *OpenAPI_dnn_info_create(
char *dnn,
int default_dnn_indicator,
int lbo_roaming_allowed,
int iwk_eps_ind,
int dnn_barred,
int invoke_nef_ind,
OpenAPI_list_t *smf_list,
int same_smf_ind
);
void OpenAPI_dnn_info_free(OpenAPI_dnn_info_t *dnn_info);
OpenAPI_dnn_info_t *OpenAPI_dnn_info_parseFromJSON(cJSON *dnn_infoJSON);
cJSON *OpenAPI_dnn_info_convertToJSON(OpenAPI_dnn_info_t *dnn_info);
OpenAPI_dnn_info_t *OpenAPI_dnn_info_copy(OpenAPI_dnn_info_t *dst, OpenAPI_dnn_info_t *src);
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_dnn_info_H_ */