mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
Add AUSF, UDM, and UDR
This commit is contained in:
parent
0c0241d5e5
commit
72370ff0b2
1151 changed files with 140173 additions and 24799 deletions
51
lib/sbi/openapi/model/iptv_config_data.h
Normal file
51
lib/sbi/openapi/model/iptv_config_data.h
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
* iptv_config_data.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_iptv_config_data_H_
|
||||
#define _OpenAPI_iptv_config_data_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "multicast_access_control.h"
|
||||
#include "snssai.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_iptv_config_data_s OpenAPI_iptv_config_data_t;
|
||||
typedef struct OpenAPI_iptv_config_data_s {
|
||||
char *supi;
|
||||
char *inter_group_id;
|
||||
char *dnn;
|
||||
struct OpenAPI_snssai_s *snssai;
|
||||
char *af_app_id;
|
||||
OpenAPI_list_t* multi_acc_ctrls;
|
||||
char *supp_feat;
|
||||
} OpenAPI_iptv_config_data_t;
|
||||
|
||||
OpenAPI_iptv_config_data_t *OpenAPI_iptv_config_data_create(
|
||||
char *supi,
|
||||
char *inter_group_id,
|
||||
char *dnn,
|
||||
OpenAPI_snssai_t *snssai,
|
||||
char *af_app_id,
|
||||
OpenAPI_list_t* multi_acc_ctrls,
|
||||
char *supp_feat
|
||||
);
|
||||
void OpenAPI_iptv_config_data_free(OpenAPI_iptv_config_data_t *iptv_config_data);
|
||||
OpenAPI_iptv_config_data_t *OpenAPI_iptv_config_data_parseFromJSON(cJSON *iptv_config_dataJSON);
|
||||
cJSON *OpenAPI_iptv_config_data_convertToJSON(OpenAPI_iptv_config_data_t *iptv_config_data);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_iptv_config_data_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue