mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20: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
40
lib/sbi/openapi/model/inter_freq_target_info.h
Normal file
40
lib/sbi/openapi/model/inter_freq_target_info.h
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* inter_freq_target_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_inter_freq_target_info_H_
|
||||
#define _OpenAPI_inter_freq_target_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_inter_freq_target_info_s OpenAPI_inter_freq_target_info_t;
|
||||
typedef struct OpenAPI_inter_freq_target_info_s {
|
||||
int dl_carrier_freq;
|
||||
OpenAPI_list_t *cell_id_list;
|
||||
} OpenAPI_inter_freq_target_info_t;
|
||||
|
||||
OpenAPI_inter_freq_target_info_t *OpenAPI_inter_freq_target_info_create(
|
||||
int dl_carrier_freq,
|
||||
OpenAPI_list_t *cell_id_list
|
||||
);
|
||||
void OpenAPI_inter_freq_target_info_free(OpenAPI_inter_freq_target_info_t *inter_freq_target_info);
|
||||
OpenAPI_inter_freq_target_info_t *OpenAPI_inter_freq_target_info_parseFromJSON(cJSON *inter_freq_target_infoJSON);
|
||||
cJSON *OpenAPI_inter_freq_target_info_convertToJSON(OpenAPI_inter_freq_target_info_t *inter_freq_target_info);
|
||||
OpenAPI_inter_freq_target_info_t *OpenAPI_inter_freq_target_info_copy(OpenAPI_inter_freq_target_info_t *dst, OpenAPI_inter_freq_target_info_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_inter_freq_target_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue