mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +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
44
lib/sbi/openapi/model/allowed_snssai.h
Normal file
44
lib/sbi/openapi/model/allowed_snssai.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* allowed_snssai.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_allowed_snssai_H_
|
||||
#define _OpenAPI_allowed_snssai_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "nsi_information.h"
|
||||
#include "snssai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_allowed_snssai_s OpenAPI_allowed_snssai_t;
|
||||
typedef struct OpenAPI_allowed_snssai_s {
|
||||
struct OpenAPI_snssai_s *allowed_snssai;
|
||||
OpenAPI_list_t *nsi_information_list;
|
||||
struct OpenAPI_snssai_s *mapped_home_snssai;
|
||||
} OpenAPI_allowed_snssai_t;
|
||||
|
||||
OpenAPI_allowed_snssai_t *OpenAPI_allowed_snssai_create(
|
||||
OpenAPI_snssai_t *allowed_snssai,
|
||||
OpenAPI_list_t *nsi_information_list,
|
||||
OpenAPI_snssai_t *mapped_home_snssai
|
||||
);
|
||||
void OpenAPI_allowed_snssai_free(OpenAPI_allowed_snssai_t *allowed_snssai);
|
||||
OpenAPI_allowed_snssai_t *OpenAPI_allowed_snssai_parseFromJSON(cJSON *allowed_snssaiJSON);
|
||||
cJSON *OpenAPI_allowed_snssai_convertToJSON(OpenAPI_allowed_snssai_t *allowed_snssai);
|
||||
OpenAPI_allowed_snssai_t *OpenAPI_allowed_snssai_copy(OpenAPI_allowed_snssai_t *dst, OpenAPI_allowed_snssai_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_allowed_snssai_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue