mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30: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
48
lib/sbi/openapi/model/hss_authentication_info_request.h
Normal file
48
lib/sbi/openapi/model/hss_authentication_info_request.h
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* hss_authentication_info_request.h
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_hss_authentication_info_request_H_
|
||||
#define _OpenAPI_hss_authentication_info_request_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
#include "hss_auth_type.h"
|
||||
#include "plmn_id.h"
|
||||
#include "resynchronization_info.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_hss_authentication_info_request_s OpenAPI_hss_authentication_info_request_t;
|
||||
typedef struct OpenAPI_hss_authentication_info_request_s {
|
||||
char *supported_features;
|
||||
struct OpenAPI_hss_auth_type_s *hss_auth_type;
|
||||
int num_of_requested_vectors;
|
||||
struct OpenAPI_plmn_id_s *serving_network_id;
|
||||
struct OpenAPI_resynchronization_info_s *resynchronization_info;
|
||||
} OpenAPI_hss_authentication_info_request_t;
|
||||
|
||||
OpenAPI_hss_authentication_info_request_t *OpenAPI_hss_authentication_info_request_create(
|
||||
char *supported_features,
|
||||
OpenAPI_hss_auth_type_t *hss_auth_type,
|
||||
int num_of_requested_vectors,
|
||||
OpenAPI_plmn_id_t *serving_network_id,
|
||||
OpenAPI_resynchronization_info_t *resynchronization_info
|
||||
);
|
||||
void OpenAPI_hss_authentication_info_request_free(OpenAPI_hss_authentication_info_request_t *hss_authentication_info_request);
|
||||
OpenAPI_hss_authentication_info_request_t *OpenAPI_hss_authentication_info_request_parseFromJSON(cJSON *hss_authentication_info_requestJSON);
|
||||
cJSON *OpenAPI_hss_authentication_info_request_convertToJSON(OpenAPI_hss_authentication_info_request_t *hss_authentication_info_request);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_hss_authentication_info_request_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue