open5gs/src/mme/mme_fd_path.h

25 lines
531 B
C
Raw Normal View History

2017-08-25 11:31:08 +00:00
#ifndef __MME_FD_PATH_H__
#define __MME_FD_PATH_H__
2017-04-04 02:00:25 +00:00
2017-04-06 10:20:33 +00:00
#include "mme_context.h"
2017-04-04 02:00:25 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
2019-04-27 14:54:30 +00:00
int mme_fd_init(void);
void mme_fd_final(void);
2017-04-04 02:00:25 +00:00
2017-04-09 13:01:54 +00:00
/* MME Sends Authentication Information Request to HSS */
2019-04-27 14:54:30 +00:00
void mme_s6a_send_air(mme_ue_t *mme_ue,
nas_authentication_failure_parameter_t *authentication_failure_parameter);
2017-04-09 13:01:54 +00:00
/* MME Sends Update Location Request to HSS */
2019-04-27 14:54:30 +00:00
void mme_s6a_send_ulr(mme_ue_t *mme_ue);
2017-04-04 02:00:25 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
2017-08-25 11:31:08 +00:00
#endif /* __MME_FD_PATH_H__ */
2017-04-04 02:00:25 +00:00