mirror of
https://github.com/open5gs/open5gs.git
synced 2025-11-22 15:31:16 +00:00
49 lines
1.6 KiB
C
49 lines
1.6 KiB
C
/*
|
|
* 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_ */
|
|
|