mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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
45
lib/sbi/openapi/model/psa_information.h
Normal file
45
lib/sbi/openapi/model/psa_information.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* psa_information.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_psa_information_H_
|
||||
#define _OpenAPI_psa_information_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "psa_indication.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_psa_information_s OpenAPI_psa_information_t;
|
||||
typedef struct OpenAPI_psa_information_s {
|
||||
struct OpenAPI_psa_indication_s *psa_ind;
|
||||
OpenAPI_list_t *dnai_list;
|
||||
char *ue_ipv6_prefix;
|
||||
char *psa_upf_id;
|
||||
} OpenAPI_psa_information_t;
|
||||
|
||||
OpenAPI_psa_information_t *OpenAPI_psa_information_create(
|
||||
OpenAPI_psa_indication_t *psa_ind,
|
||||
OpenAPI_list_t *dnai_list,
|
||||
char *ue_ipv6_prefix,
|
||||
char *psa_upf_id
|
||||
);
|
||||
void OpenAPI_psa_information_free(OpenAPI_psa_information_t *psa_information);
|
||||
OpenAPI_psa_information_t *OpenAPI_psa_information_parseFromJSON(cJSON *psa_informationJSON);
|
||||
cJSON *OpenAPI_psa_information_convertToJSON(OpenAPI_psa_information_t *psa_information);
|
||||
OpenAPI_psa_information_t *OpenAPI_psa_information_copy(OpenAPI_psa_information_t *dst, OpenAPI_psa_information_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_psa_information_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue