Add AUSF, UDM, and UDR

This commit is contained in:
Sukchan Lee 2020-06-04 14:12:05 -04:00
parent 0c0241d5e5
commit 72370ff0b2
1151 changed files with 140173 additions and 24799 deletions

View 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_ */