mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +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
|
|
@ -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,11 +17,15 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef enum { OpenAPI_transport_protocol_NULL = 0, OpenAPI_transport_protocol_TCP } OpenAPI_transport_protocol_e;
|
||||
typedef struct OpenAPI_transport_protocol_s OpenAPI_transport_protocol_t;
|
||||
typedef struct OpenAPI_transport_protocol_s {
|
||||
} OpenAPI_transport_protocol_t;
|
||||
|
||||
char* OpenAPI_transport_protocol_ToString(OpenAPI_transport_protocol_e transport_protocol);
|
||||
|
||||
OpenAPI_transport_protocol_e OpenAPI_transport_protocol_FromString(char* transport_protocol);
|
||||
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);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue