mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20: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
36
lib/sbi/openapi/model/ma_pdu_indication.h
Normal file
36
lib/sbi/openapi/model/ma_pdu_indication.h
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* ma_pdu_indication.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_ma_pdu_indication_H_
|
||||
#define _OpenAPI_ma_pdu_indication_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_ma_pdu_indication_s OpenAPI_ma_pdu_indication_t;
|
||||
typedef struct OpenAPI_ma_pdu_indication_s {
|
||||
} OpenAPI_ma_pdu_indication_t;
|
||||
|
||||
OpenAPI_ma_pdu_indication_t *OpenAPI_ma_pdu_indication_create(
|
||||
);
|
||||
void OpenAPI_ma_pdu_indication_free(OpenAPI_ma_pdu_indication_t *ma_pdu_indication);
|
||||
OpenAPI_ma_pdu_indication_t *OpenAPI_ma_pdu_indication_parseFromJSON(cJSON *ma_pdu_indicationJSON);
|
||||
cJSON *OpenAPI_ma_pdu_indication_convertToJSON(OpenAPI_ma_pdu_indication_t *ma_pdu_indication);
|
||||
OpenAPI_ma_pdu_indication_t *OpenAPI_ma_pdu_indication_copy(OpenAPI_ma_pdu_indication_t *dst, OpenAPI_ma_pdu_indication_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_ma_pdu_indication_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue