arch: DB schema Changes (#796)

- New function : NSSF
- New feature : SMF selection
This commit is contained in:
Sukchan Lee 2021-03-08 21:25:09 +09:00
parent c6bfbed922
commit 9af4268bab
691 changed files with 40727 additions and 18985 deletions

View file

@ -1,7 +1,7 @@
/*
* transport_protocol.h
*
* Types of transport protocol used in a given IP endpoint of an NF Service Instance
*
*/
#ifndef _OpenAPI_transport_protocol_H_
@ -17,16 +17,11 @@
extern "C" {
#endif
typedef struct OpenAPI_transport_protocol_s OpenAPI_transport_protocol_t;
typedef struct OpenAPI_transport_protocol_s {
} OpenAPI_transport_protocol_t;
typedef enum { OpenAPI_transport_protocol_NULL = 0, OpenAPI_transport_protocol_TCP } OpenAPI_transport_protocol_e;
OpenAPI_transport_protocol_t *OpenAPI_transport_protocol_create(
);
void OpenAPI_transport_protocol_free(OpenAPI_transport_protocol_t *transport_protocol);
OpenAPI_transport_protocol_t *OpenAPI_transport_protocol_parseFromJSON(cJSON *transport_protocolJSON);
cJSON *OpenAPI_transport_protocol_convertToJSON(OpenAPI_transport_protocol_t *transport_protocol);
OpenAPI_transport_protocol_t *OpenAPI_transport_protocol_copy(OpenAPI_transport_protocol_t *dst, OpenAPI_transport_protocol_t *src);
char* OpenAPI_transport_protocol_ToString(OpenAPI_transport_protocol_e transport_protocol);
OpenAPI_transport_protocol_e OpenAPI_transport_protocol_FromString(char* transport_protocol);
#ifdef __cplusplus
}