mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30: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
42
lib/sbi/openapi/model/allowed_nssai.h
Normal file
42
lib/sbi/openapi/model/allowed_nssai.h
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* allowed_nssai.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_allowed_nssai_H_
|
||||
#define _OpenAPI_allowed_nssai_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "access_type.h"
|
||||
#include "allowed_snssai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_allowed_nssai_s OpenAPI_allowed_nssai_t;
|
||||
typedef struct OpenAPI_allowed_nssai_s {
|
||||
OpenAPI_list_t *allowed_snssai_list;
|
||||
OpenAPI_access_type_e access_type;
|
||||
} OpenAPI_allowed_nssai_t;
|
||||
|
||||
OpenAPI_allowed_nssai_t *OpenAPI_allowed_nssai_create(
|
||||
OpenAPI_list_t *allowed_snssai_list,
|
||||
OpenAPI_access_type_e access_type
|
||||
);
|
||||
void OpenAPI_allowed_nssai_free(OpenAPI_allowed_nssai_t *allowed_nssai);
|
||||
OpenAPI_allowed_nssai_t *OpenAPI_allowed_nssai_parseFromJSON(cJSON *allowed_nssaiJSON);
|
||||
cJSON *OpenAPI_allowed_nssai_convertToJSON(OpenAPI_allowed_nssai_t *allowed_nssai);
|
||||
OpenAPI_allowed_nssai_t *OpenAPI_allowed_nssai_copy(OpenAPI_allowed_nssai_t *dst, OpenAPI_allowed_nssai_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_allowed_nssai_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue