mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
Added NRF
This commit is contained in:
parent
46f20cc979
commit
d0673e3066
397 changed files with 85455 additions and 209 deletions
49
lib/sbi/openapi/model/smf_info.h
Normal file
49
lib/sbi/openapi/model/smf_info.h
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* smf_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_smf_info_H_
|
||||
#define _OpenAPI_smf_info_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 "snssai_smf_info_item.h"
|
||||
#include "tai.h"
|
||||
#include "tai_range.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_smf_info_s OpenAPI_smf_info_t;
|
||||
typedef struct OpenAPI_smf_info_s {
|
||||
OpenAPI_list_t *s_nssai_smf_info_list;
|
||||
OpenAPI_list_t *tai_list;
|
||||
OpenAPI_list_t *tai_range_list;
|
||||
char *pgw_fqdn;
|
||||
OpenAPI_list_t *access_type;
|
||||
} OpenAPI_smf_info_t;
|
||||
|
||||
OpenAPI_smf_info_t *OpenAPI_smf_info_create(
|
||||
OpenAPI_list_t *s_nssai_smf_info_list,
|
||||
OpenAPI_list_t *tai_list,
|
||||
OpenAPI_list_t *tai_range_list,
|
||||
char *pgw_fqdn,
|
||||
OpenAPI_list_t *access_type
|
||||
);
|
||||
void OpenAPI_smf_info_free(OpenAPI_smf_info_t *smf_info);
|
||||
OpenAPI_smf_info_t *OpenAPI_smf_info_parseFromJSON(cJSON *smf_infoJSON);
|
||||
cJSON *OpenAPI_smf_info_convertToJSON(OpenAPI_smf_info_t *smf_info);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_smf_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue