mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +00:00
[Release-17] Upgrade SBI to v17.x.0
This commit is contained in:
parent
969c116e77
commit
4d44b1843e
1687 changed files with 121604 additions and 9310 deletions
43
lib/sbi/openapi/model/pcf_mbs_binding_patch.h
Normal file
43
lib/sbi/openapi/model/pcf_mbs_binding_patch.h
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* pcf_mbs_binding_patch.h
|
||||
*
|
||||
* Represents the requested modification to an Individual PCF for an MBS Session binding.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_pcf_mbs_binding_patch_H_
|
||||
#define _OpenAPI_pcf_mbs_binding_patch_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "ip_end_point.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_pcf_mbs_binding_patch_s OpenAPI_pcf_mbs_binding_patch_t;
|
||||
typedef struct OpenAPI_pcf_mbs_binding_patch_s {
|
||||
char *pcf_fqdn;
|
||||
OpenAPI_list_t *pcf_ip_end_points;
|
||||
char *pcf_id;
|
||||
} OpenAPI_pcf_mbs_binding_patch_t;
|
||||
|
||||
OpenAPI_pcf_mbs_binding_patch_t *OpenAPI_pcf_mbs_binding_patch_create(
|
||||
char *pcf_fqdn,
|
||||
OpenAPI_list_t *pcf_ip_end_points,
|
||||
char *pcf_id
|
||||
);
|
||||
void OpenAPI_pcf_mbs_binding_patch_free(OpenAPI_pcf_mbs_binding_patch_t *pcf_mbs_binding_patch);
|
||||
OpenAPI_pcf_mbs_binding_patch_t *OpenAPI_pcf_mbs_binding_patch_parseFromJSON(cJSON *pcf_mbs_binding_patchJSON);
|
||||
cJSON *OpenAPI_pcf_mbs_binding_patch_convertToJSON(OpenAPI_pcf_mbs_binding_patch_t *pcf_mbs_binding_patch);
|
||||
OpenAPI_pcf_mbs_binding_patch_t *OpenAPI_pcf_mbs_binding_patch_copy(OpenAPI_pcf_mbs_binding_patch_t *dst, OpenAPI_pcf_mbs_binding_patch_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_pcf_mbs_binding_patch_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue