mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
Add PCF(Policy Control Function)
This commit is contained in:
parent
fb95725ca4
commit
198abc6e8b
299 changed files with 29050 additions and 1075 deletions
55
lib/sbi/openapi/model/presence_info_rm.h
Normal file
55
lib/sbi/openapi/model/presence_info_rm.h
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
* presence_info_rm.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_presence_info_rm_H_
|
||||
#define _OpenAPI_presence_info_rm_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "ecgi.h"
|
||||
#include "global_ran_node_id.h"
|
||||
#include "ncgi.h"
|
||||
#include "presence_state.h"
|
||||
#include "tai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_presence_info_rm_s OpenAPI_presence_info_rm_t;
|
||||
typedef struct OpenAPI_presence_info_rm_s {
|
||||
char *pra_id;
|
||||
OpenAPI_presence_state_e presence_state;
|
||||
OpenAPI_list_t *tracking_area_list;
|
||||
OpenAPI_list_t *ecgi_list;
|
||||
OpenAPI_list_t *ncgi_list;
|
||||
OpenAPI_list_t *global_ran_node_id_list;
|
||||
OpenAPI_list_t *globale_nb_id_list;
|
||||
} OpenAPI_presence_info_rm_t;
|
||||
|
||||
OpenAPI_presence_info_rm_t *OpenAPI_presence_info_rm_create(
|
||||
char *pra_id,
|
||||
OpenAPI_presence_state_e presence_state,
|
||||
OpenAPI_list_t *tracking_area_list,
|
||||
OpenAPI_list_t *ecgi_list,
|
||||
OpenAPI_list_t *ncgi_list,
|
||||
OpenAPI_list_t *global_ran_node_id_list,
|
||||
OpenAPI_list_t *globale_nb_id_list
|
||||
);
|
||||
void OpenAPI_presence_info_rm_free(OpenAPI_presence_info_rm_t *presence_info_rm);
|
||||
OpenAPI_presence_info_rm_t *OpenAPI_presence_info_rm_parseFromJSON(cJSON *presence_info_rmJSON);
|
||||
cJSON *OpenAPI_presence_info_rm_convertToJSON(OpenAPI_presence_info_rm_t *presence_info_rm);
|
||||
OpenAPI_presence_info_rm_t *OpenAPI_presence_info_rm_copy(OpenAPI_presence_info_rm_t *dst, OpenAPI_presence_info_rm_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_presence_info_rm_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue