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
41
lib/sbi/openapi/model/candidate_for_replacement.h
Normal file
41
lib/sbi/openapi/model/candidate_for_replacement.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* candidate_for_replacement.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_candidate_for_replacement_H_
|
||||
#define _OpenAPI_candidate_for_replacement_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "snssai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_candidate_for_replacement_s OpenAPI_candidate_for_replacement_t;
|
||||
typedef struct OpenAPI_candidate_for_replacement_s {
|
||||
struct OpenAPI_snssai_s *snssai;
|
||||
OpenAPI_list_t *dnns;
|
||||
} OpenAPI_candidate_for_replacement_t;
|
||||
|
||||
OpenAPI_candidate_for_replacement_t *OpenAPI_candidate_for_replacement_create(
|
||||
OpenAPI_snssai_t *snssai,
|
||||
OpenAPI_list_t *dnns
|
||||
);
|
||||
void OpenAPI_candidate_for_replacement_free(OpenAPI_candidate_for_replacement_t *candidate_for_replacement);
|
||||
OpenAPI_candidate_for_replacement_t *OpenAPI_candidate_for_replacement_parseFromJSON(cJSON *candidate_for_replacementJSON);
|
||||
cJSON *OpenAPI_candidate_for_replacement_convertToJSON(OpenAPI_candidate_for_replacement_t *candidate_for_replacement);
|
||||
OpenAPI_candidate_for_replacement_t *OpenAPI_candidate_for_replacement_copy(OpenAPI_candidate_for_replacement_t *dst, OpenAPI_candidate_for_replacement_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_candidate_for_replacement_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue