mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
45
lib/sbi/openapi/model/area_scope.h
Normal file
45
lib/sbi/openapi/model/area_scope.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* area_scope.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_area_scope_H_
|
||||
#define _OpenAPI_area_scope_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "tac_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_area_scope_s OpenAPI_area_scope_t;
|
||||
typedef struct OpenAPI_area_scope_s {
|
||||
OpenAPI_list_t *eutra_cell_id_list;
|
||||
OpenAPI_list_t *nr_cell_id_list;
|
||||
OpenAPI_list_t *tac_list;
|
||||
OpenAPI_list_t* tac_info_per_plmn;
|
||||
} OpenAPI_area_scope_t;
|
||||
|
||||
OpenAPI_area_scope_t *OpenAPI_area_scope_create(
|
||||
OpenAPI_list_t *eutra_cell_id_list,
|
||||
OpenAPI_list_t *nr_cell_id_list,
|
||||
OpenAPI_list_t *tac_list,
|
||||
OpenAPI_list_t* tac_info_per_plmn
|
||||
);
|
||||
void OpenAPI_area_scope_free(OpenAPI_area_scope_t *area_scope);
|
||||
OpenAPI_area_scope_t *OpenAPI_area_scope_parseFromJSON(cJSON *area_scopeJSON);
|
||||
cJSON *OpenAPI_area_scope_convertToJSON(OpenAPI_area_scope_t *area_scope);
|
||||
OpenAPI_area_scope_t *OpenAPI_area_scope_copy(OpenAPI_area_scope_t *dst, OpenAPI_area_scope_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_area_scope_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue