mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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/pcf_info.h
Normal file
49
lib/sbi/openapi/model/pcf_info.h
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* pcf_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_pcf_info_H_
|
||||
#define _OpenAPI_pcf_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "identity_range.h"
|
||||
#include "supi_range.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_pcf_info_s OpenAPI_pcf_info_t;
|
||||
typedef struct OpenAPI_pcf_info_s {
|
||||
char *group_id;
|
||||
OpenAPI_list_t *dnn_list;
|
||||
OpenAPI_list_t *supi_ranges;
|
||||
OpenAPI_list_t *gpsi_ranges;
|
||||
char *rx_diam_host;
|
||||
char *rx_diam_realm;
|
||||
} OpenAPI_pcf_info_t;
|
||||
|
||||
OpenAPI_pcf_info_t *OpenAPI_pcf_info_create(
|
||||
char *group_id,
|
||||
OpenAPI_list_t *dnn_list,
|
||||
OpenAPI_list_t *supi_ranges,
|
||||
OpenAPI_list_t *gpsi_ranges,
|
||||
char *rx_diam_host,
|
||||
char *rx_diam_realm
|
||||
);
|
||||
void OpenAPI_pcf_info_free(OpenAPI_pcf_info_t *pcf_info);
|
||||
OpenAPI_pcf_info_t *OpenAPI_pcf_info_parseFromJSON(cJSON *pcf_infoJSON);
|
||||
cJSON *OpenAPI_pcf_info_convertToJSON(OpenAPI_pcf_info_t *pcf_info);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_pcf_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue