mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +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
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* iptv_config_data.h
|
||||
*
|
||||
*
|
||||
* Represents IPTV configuration data information.
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_iptv_config_data_H_
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "any_type.h"
|
||||
#include "multicast_access_control.h"
|
||||
#include "snssai.h"
|
||||
|
||||
|
|
@ -22,24 +23,26 @@ extern "C" {
|
|||
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;
|
||||
OpenAPI_any_type_t *inter_group_id;
|
||||
char *dnn;
|
||||
struct OpenAPI_snssai_s *snssai;
|
||||
char *af_app_id;
|
||||
OpenAPI_list_t* multi_acc_ctrls;
|
||||
char *supp_feat;
|
||||
char *res_uri;
|
||||
OpenAPI_list_t *reset_ids;
|
||||
} OpenAPI_iptv_config_data_t;
|
||||
|
||||
OpenAPI_iptv_config_data_t *OpenAPI_iptv_config_data_create(
|
||||
char *supi,
|
||||
char *inter_group_id,
|
||||
OpenAPI_any_type_t *inter_group_id,
|
||||
char *dnn,
|
||||
OpenAPI_snssai_t *snssai,
|
||||
char *af_app_id,
|
||||
OpenAPI_list_t* multi_acc_ctrls,
|
||||
char *supp_feat,
|
||||
char *res_uri
|
||||
char *res_uri,
|
||||
OpenAPI_list_t *reset_ids
|
||||
);
|
||||
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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue