mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +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
58
lib/sbi/openapi/model/context_data_sets.h
Normal file
58
lib/sbi/openapi/model/context_data_sets.h
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* context_data_sets.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_context_data_sets_H_
|
||||
#define _OpenAPI_context_data_sets_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "amf3_gpp_access_registration.h"
|
||||
#include "amf_non3_gpp_access_registration.h"
|
||||
#include "ee_subscription.h"
|
||||
#include "sdm_subscription.h"
|
||||
#include "smf_registration.h"
|
||||
#include "smsf_registration.h"
|
||||
#include "subscription_data_subscriptions.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_context_data_sets_s OpenAPI_context_data_sets_t;
|
||||
typedef struct OpenAPI_context_data_sets_s {
|
||||
struct OpenAPI_amf3_gpp_access_registration_s *amf3_gpp;
|
||||
struct OpenAPI_amf_non3_gpp_access_registration_s *amf_non3_gpp;
|
||||
OpenAPI_list_t *sdm_subscriptions;
|
||||
OpenAPI_list_t *ee_subscriptions;
|
||||
struct OpenAPI_smsf_registration_s *smsf3_gpp_access;
|
||||
struct OpenAPI_smsf_registration_s *smsf_non3_gpp_access;
|
||||
OpenAPI_list_t *subscription_data_subscriptions;
|
||||
OpenAPI_list_t *smf_registrations;
|
||||
} OpenAPI_context_data_sets_t;
|
||||
|
||||
OpenAPI_context_data_sets_t *OpenAPI_context_data_sets_create(
|
||||
OpenAPI_amf3_gpp_access_registration_t *amf3_gpp,
|
||||
OpenAPI_amf_non3_gpp_access_registration_t *amf_non3_gpp,
|
||||
OpenAPI_list_t *sdm_subscriptions,
|
||||
OpenAPI_list_t *ee_subscriptions,
|
||||
OpenAPI_smsf_registration_t *smsf3_gpp_access,
|
||||
OpenAPI_smsf_registration_t *smsf_non3_gpp_access,
|
||||
OpenAPI_list_t *subscription_data_subscriptions,
|
||||
OpenAPI_list_t *smf_registrations
|
||||
);
|
||||
void OpenAPI_context_data_sets_free(OpenAPI_context_data_sets_t *context_data_sets);
|
||||
OpenAPI_context_data_sets_t *OpenAPI_context_data_sets_parseFromJSON(cJSON *context_data_setsJSON);
|
||||
cJSON *OpenAPI_context_data_sets_convertToJSON(OpenAPI_context_data_sets_t *context_data_sets);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_context_data_sets_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue