mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-03 05:40: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
53
lib/sbi/openapi/model/authentication_info.h
Normal file
53
lib/sbi/openapi/model/authentication_info.h
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
/*
|
||||
* authentication_info.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_authentication_info_H_
|
||||
#define _OpenAPI_authentication_info_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "resynchronization_info.h"
|
||||
#include "trace_data.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_authentication_info_s OpenAPI_authentication_info_t;
|
||||
typedef struct OpenAPI_authentication_info_s {
|
||||
char *supi_or_suci;
|
||||
char *serving_network_name;
|
||||
struct OpenAPI_resynchronization_info_s *resynchronization_info;
|
||||
char *pei;
|
||||
struct OpenAPI_trace_data_s *trace_data;
|
||||
char *udm_group_id;
|
||||
char *routing_indicator;
|
||||
char *cag_id;
|
||||
} OpenAPI_authentication_info_t;
|
||||
|
||||
OpenAPI_authentication_info_t *OpenAPI_authentication_info_create(
|
||||
char *supi_or_suci,
|
||||
char *serving_network_name,
|
||||
OpenAPI_resynchronization_info_t *resynchronization_info,
|
||||
char *pei,
|
||||
OpenAPI_trace_data_t *trace_data,
|
||||
char *udm_group_id,
|
||||
char *routing_indicator,
|
||||
char *cag_id
|
||||
);
|
||||
void OpenAPI_authentication_info_free(OpenAPI_authentication_info_t *authentication_info);
|
||||
OpenAPI_authentication_info_t *OpenAPI_authentication_info_parseFromJSON(cJSON *authentication_infoJSON);
|
||||
cJSON *OpenAPI_authentication_info_convertToJSON(OpenAPI_authentication_info_t *authentication_info);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_authentication_info_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue