mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
Add only one 5GC scenario (call-flow)
This commit is contained in:
parent
20008b6a13
commit
dbee687a75
1415 changed files with 86635 additions and 5877 deletions
41
lib/sbi/openapi/model/ladn_info.h
Normal file
41
lib/sbi/openapi/model/ladn_info.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* ladn_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ladn_info_H_
|
||||
#define _OpenAPI_ladn_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "presence_state.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_ladn_info_s OpenAPI_ladn_info_t;
|
||||
typedef struct OpenAPI_ladn_info_s {
|
||||
char *ladn;
|
||||
struct OpenAPI_presence_state_s *presence;
|
||||
} OpenAPI_ladn_info_t;
|
||||
|
||||
OpenAPI_ladn_info_t *OpenAPI_ladn_info_create(
|
||||
char *ladn,
|
||||
OpenAPI_presence_state_t *presence
|
||||
);
|
||||
void OpenAPI_ladn_info_free(OpenAPI_ladn_info_t *ladn_info);
|
||||
OpenAPI_ladn_info_t *OpenAPI_ladn_info_parseFromJSON(cJSON *ladn_infoJSON);
|
||||
cJSON *OpenAPI_ladn_info_convertToJSON(OpenAPI_ladn_info_t *ladn_info);
|
||||
OpenAPI_ladn_info_t *OpenAPI_ladn_info_copy(OpenAPI_ladn_info_t *dst, OpenAPI_ladn_info_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ladn_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue