mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +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
45
lib/sbi/openapi/model/up_path_chg_event.h
Normal file
45
lib/sbi/openapi/model/up_path_chg_event.h
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* up_path_chg_event.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_up_path_chg_event_H_
|
||||
#define _OpenAPI_up_path_chg_event_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "dnai_change_type.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_up_path_chg_event_s OpenAPI_up_path_chg_event_t;
|
||||
typedef struct OpenAPI_up_path_chg_event_s {
|
||||
char *notification_uri;
|
||||
char *notif_corre_id;
|
||||
struct OpenAPI_dnai_change_type_s *dnai_chg_type;
|
||||
int af_ack_ind;
|
||||
} OpenAPI_up_path_chg_event_t;
|
||||
|
||||
OpenAPI_up_path_chg_event_t *OpenAPI_up_path_chg_event_create(
|
||||
char *notification_uri,
|
||||
char *notif_corre_id,
|
||||
OpenAPI_dnai_change_type_t *dnai_chg_type,
|
||||
int af_ack_ind
|
||||
);
|
||||
void OpenAPI_up_path_chg_event_free(OpenAPI_up_path_chg_event_t *up_path_chg_event);
|
||||
OpenAPI_up_path_chg_event_t *OpenAPI_up_path_chg_event_parseFromJSON(cJSON *up_path_chg_eventJSON);
|
||||
cJSON *OpenAPI_up_path_chg_event_convertToJSON(OpenAPI_up_path_chg_event_t *up_path_chg_event);
|
||||
OpenAPI_up_path_chg_event_t *OpenAPI_up_path_chg_event_copy(OpenAPI_up_path_chg_event_t *dst, OpenAPI_up_path_chg_event_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_up_path_chg_event_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue